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

Unified Diff: test/unittests/compiler/change-lowering-unittest.cc

Issue 1088993003: Replace OVERRIDE->override and FINAL->final since we now require C++11. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
Index: test/unittests/compiler/change-lowering-unittest.cc
diff --git a/test/unittests/compiler/change-lowering-unittest.cc b/test/unittests/compiler/change-lowering-unittest.cc
index 5cfb8fdc41960c689b0ec329d4c0a6f27ff251a0..0c0df6b8e6fa744aee91b6caf04d231d89b0931a 100644
--- a/test/unittests/compiler/change-lowering-unittest.cc
+++ b/test/unittests/compiler/change-lowering-unittest.cc
@@ -96,9 +96,9 @@ class ChangeLoweringCommonTest
: public ChangeLoweringTest,
public ::testing::WithParamInterface<MachineType> {
public:
- ~ChangeLoweringCommonTest() OVERRIDE {}
+ ~ChangeLoweringCommonTest() override {}
- MachineType WordRepresentation() const FINAL { return GetParam(); }
+ MachineType WordRepresentation() const final { return GetParam(); }
};
@@ -205,8 +205,8 @@ INSTANTIATE_TEST_CASE_P(ChangeLoweringTest, ChangeLoweringCommonTest,
class ChangeLowering32Test : public ChangeLoweringTest {
public:
- ~ChangeLowering32Test() OVERRIDE {}
- MachineType WordRepresentation() const FINAL { return kRepWord32; }
+ ~ChangeLowering32Test() override {}
+ MachineType WordRepresentation() const final { return kRepWord32; }
};
@@ -343,8 +343,8 @@ TARGET_TEST_F(ChangeLowering32Test, ChangeUint32ToTagged) {
class ChangeLowering64Test : public ChangeLoweringTest {
public:
- ~ChangeLowering64Test() OVERRIDE {}
- MachineType WordRepresentation() const FINAL { return kRepWord64; }
+ ~ChangeLowering64Test() override {}
+ MachineType WordRepresentation() const final { return kRepWord64; }
};
« no previous file with comments | « test/unittests/base/platform/semaphore-unittest.cc ('k') | test/unittests/compiler/common-operator-reducer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698