Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 6f5532ed164a2ffabe6d57c132c65cc7b8cc0bec..b081a18fff4dfb4b64f70c6531006886db0a7ce1 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -310,29 +310,29 @@ class HOptimizedGraphBuilderWithPositions: public HOptimizedGraphBuilder { |
: HOptimizedGraphBuilder(info) { |
} |
-#define DEF_VISIT(type) \ |
- virtual void Visit##type(type* node) OVERRIDE { \ |
- if (node->position() != RelocInfo::kNoPosition) { \ |
- SetSourcePosition(node->position()); \ |
- } \ |
- HOptimizedGraphBuilder::Visit##type(node); \ |
+#define DEF_VISIT(type) \ |
+ void Visit##type(type* node) OVERRIDE { \ |
+ if (node->position() != RelocInfo::kNoPosition) { \ |
+ SetSourcePosition(node->position()); \ |
+ } \ |
+ HOptimizedGraphBuilder::Visit##type(node); \ |
} |
EXPRESSION_NODE_LIST(DEF_VISIT) |
#undef DEF_VISIT |
-#define DEF_VISIT(type) \ |
- virtual void Visit##type(type* node) OVERRIDE { \ |
- if (node->position() != RelocInfo::kNoPosition) { \ |
- SetSourcePosition(node->position()); \ |
- } \ |
- HOptimizedGraphBuilder::Visit##type(node); \ |
+#define DEF_VISIT(type) \ |
+ void Visit##type(type* node) OVERRIDE { \ |
+ if (node->position() != RelocInfo::kNoPosition) { \ |
+ SetSourcePosition(node->position()); \ |
+ } \ |
+ HOptimizedGraphBuilder::Visit##type(node); \ |
} |
STATEMENT_NODE_LIST(DEF_VISIT) |
#undef DEF_VISIT |
-#define DEF_VISIT(type) \ |
- virtual void Visit##type(type* node) OVERRIDE { \ |
- HOptimizedGraphBuilder::Visit##type(node); \ |
+#define DEF_VISIT(type) \ |
+ void Visit##type(type* node) OVERRIDE { \ |
+ HOptimizedGraphBuilder::Visit##type(node); \ |
} |
MODULE_NODE_LIST(DEF_VISIT) |
DECLARATION_NODE_LIST(DEF_VISIT) |