Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1482)

Unified Diff: Source/platform/PODIntervalTree.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/PODArena.h ('k') | Source/platform/RefCountedSupplement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PODIntervalTree.h
diff --git a/Source/platform/PODIntervalTree.h b/Source/platform/PODIntervalTree.h
index 10e6dc1d1f3fe8737e43731bdef048bfe94897c7..5384e0dbd7367456fc94b01ad7cc9d866ae6ef12 100644
--- a/Source/platform/PODIntervalTree.h
+++ b/Source/platform/PODIntervalTree.h
@@ -131,7 +131,7 @@ public:
return IntervalType(low, high, data);
}
- virtual bool checkInvariants() const OVERRIDE
+ virtual bool checkInvariants() const override
{
if (!PODRedBlackTree<IntervalType>::checkInvariants())
return false;
@@ -181,7 +181,7 @@ private:
searchForOverlapsFrom<AdapterType>(node->right(), adapter);
}
- virtual bool updateNode(IntervalNode* node) OVERRIDE
+ virtual bool updateNode(IntervalNode* node) override
{
// Would use const T&, but need to reassign this reference in this
// function.
« no previous file with comments | « Source/platform/PODArena.h ('k') | Source/platform/RefCountedSupplement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698