Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 4553f2e1075b86c4de3a0717222306949323015b..38c097e0c5a038637124d8dbd09233dac73a6ec3 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -324,7 +324,7 @@ class HOptimizedGraphBuilderWithPositions: public HOptimizedGraphBuilder { |
} |
#define DEF_VISIT(type) \ |
- void Visit##type(type* node) OVERRIDE { \ |
+ void Visit##type(type* node) override { \ |
SourcePosition old_position = SourcePosition::Unknown(); \ |
if (node->position() != RelocInfo::kNoPosition) { \ |
old_position = source_position(); \ |
@@ -339,7 +339,7 @@ class HOptimizedGraphBuilderWithPositions: public HOptimizedGraphBuilder { |
#undef DEF_VISIT |
#define DEF_VISIT(type) \ |
- void Visit##type(type* node) OVERRIDE { \ |
+ void Visit##type(type* node) override { \ |
SourcePosition old_position = SourcePosition::Unknown(); \ |
if (node->position() != RelocInfo::kNoPosition) { \ |
old_position = source_position(); \ |
@@ -354,7 +354,7 @@ class HOptimizedGraphBuilderWithPositions: public HOptimizedGraphBuilder { |
#undef DEF_VISIT |
#define DEF_VISIT(type) \ |
- void Visit##type(type* node) OVERRIDE { \ |
+ void Visit##type(type* node) override { \ |
HOptimizedGraphBuilder::Visit##type(node); \ |
} |
MODULE_NODE_LIST(DEF_VISIT) |