Index: src/full-codegen.h |
=================================================================== |
--- src/full-codegen.h (revision 24959) |
+++ src/full-codegen.h (working copy) |
@@ -40,7 +40,7 @@ |
private: |
// AST node visit functions. |
-#define DECLARE_VISIT(type) virtual void Visit##type(type* node); |
+#define DECLARE_VISIT(type) virtual void Visit##type(type* node) OVERRIDE; |
AST_NODE_LIST(DECLARE_VISIT) |
#undef DECLARE_VISIT |
@@ -670,7 +670,7 @@ |
void PushFunctionArgumentForContextAllocation(); |
// AST node visit functions. |
-#define DECLARE_VISIT(type) virtual void Visit##type(type* node); |
+#define DECLARE_VISIT(type) virtual void Visit##type(type* node) OVERRIDE; |
AST_NODE_LIST(DECLARE_VISIT) |
#undef DECLARE_VISIT |