Bug 1061909 followup: Add missing 'override' keyword to count() methods in DebuggerMemory.cpp. rs=ehsan

This commit is contained in:
Daniel Holbert 2015-07-02 16:31:53 -07:00
parent 737bf23f72
commit a04fe48b1f

View File

@ -943,7 +943,7 @@ class ByUbinodeType : public CountType {
count.~Count();
}
bool count(CountBase& countBase, const Node& node) {
bool count(CountBase& countBase, const Node& node) override {
Count& count = static_cast<Count&>(countBase);
count.total_++;
@ -1084,7 +1084,7 @@ class ByAllocationStack : public CountType {
count.~Count();
}
bool count(CountBase& countBase, const Node& node) {
bool count(CountBase& countBase, const Node& node) override {
Count& count = static_cast<Count&>(countBase);
count.total_++;