Index: src/compiler/ast-graph-builder.h |
diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h |
index 9bb02c5520152c6d0115cf591fb7913b0eeb1884..9792a188f7d4de648074ec61e9f7742f6b1c34d4 100644 |
--- a/src/compiler/ast-graph-builder.h |
+++ b/src/compiler/ast-graph-builder.h |
@@ -317,35 +317,35 @@ class AstGraphBuilder::AstContext BASE_EMBEDDED { |
// Context to evaluate expression for its side effects only. |
-class AstGraphBuilder::AstEffectContext V8_FINAL : public AstContext { |
+class AstGraphBuilder::AstEffectContext FINAL : public AstContext { |
public: |
explicit AstEffectContext(AstGraphBuilder* owner) |
: AstContext(owner, Expression::kEffect) {} |
virtual ~AstEffectContext(); |
- virtual void ProduceValue(Node* value) V8_OVERRIDE; |
- virtual Node* ConsumeValue() V8_OVERRIDE; |
+ virtual void ProduceValue(Node* value) OVERRIDE; |
+ virtual Node* ConsumeValue() OVERRIDE; |
}; |
// Context to evaluate expression for its value (and side effects). |
-class AstGraphBuilder::AstValueContext V8_FINAL : public AstContext { |
+class AstGraphBuilder::AstValueContext FINAL : public AstContext { |
public: |
explicit AstValueContext(AstGraphBuilder* owner) |
: AstContext(owner, Expression::kValue) {} |
virtual ~AstValueContext(); |
- virtual void ProduceValue(Node* value) V8_OVERRIDE; |
- virtual Node* ConsumeValue() V8_OVERRIDE; |
+ virtual void ProduceValue(Node* value) OVERRIDE; |
+ virtual Node* ConsumeValue() OVERRIDE; |
}; |
// Context to evaluate expression for a condition value (and side effects). |
-class AstGraphBuilder::AstTestContext V8_FINAL : public AstContext { |
+class AstGraphBuilder::AstTestContext FINAL : public AstContext { |
public: |
explicit AstTestContext(AstGraphBuilder* owner) |
: AstContext(owner, Expression::kTest) {} |
virtual ~AstTestContext(); |
- virtual void ProduceValue(Node* value) V8_OVERRIDE; |
- virtual Node* ConsumeValue() V8_OVERRIDE; |
+ virtual void ProduceValue(Node* value) OVERRIDE; |
+ virtual Node* ConsumeValue() OVERRIDE; |
}; |