Index: src/ast.cc |
diff --git a/src/ast.cc b/src/ast.cc |
index 9a87cf9d437ce3518a9fecd60aef900e2f01e64b..8f69bd705923b7e9136d3881ebffca5f4507d9e8 100644 |
--- a/src/ast.cc |
+++ b/src/ast.cc |
@@ -858,13 +858,13 @@ bool RegExpCapture::IsAnchoredAtEnd() { |
// in as many cases as possible, to make it more difficult for incorrect |
// parses to look as correct ones which is likely if the input and |
// output formats are alike. |
-class RegExpUnparser FINAL : public RegExpVisitor { |
+class RegExpUnparser V8_FINAL : public RegExpVisitor { |
public: |
explicit RegExpUnparser(Zone* zone); |
void VisitCharacterRange(CharacterRange that); |
SmartArrayPointer<const char> ToString() { return stream_.ToCString(); } |
#define MAKE_CASE(Name) virtual void* Visit##Name(RegExp##Name*, \ |
- void* data) OVERRIDE; |
+ void* data) V8_OVERRIDE; |
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_CASE) |
#undef MAKE_CASE |
private: |