Index: src/compiler/change-lowering.h |
diff --git a/src/compiler/change-lowering.h b/src/compiler/change-lowering.h |
index 110aab4dad7be329431d7c95966262ae02c1a62e..773fd0807b8ea34f8b829e21a68fb7f4968b2449 100644 |
--- a/src/compiler/change-lowering.h |
+++ b/src/compiler/change-lowering.h |
@@ -21,9 +21,9 @@ class ChangeLowering FINAL : public Reducer { |
public: |
ChangeLowering(JSGraph* jsgraph, Linkage* linkage) |
: jsgraph_(jsgraph), linkage_(linkage) {} |
- virtual ~ChangeLowering(); |
+ ~ChangeLowering() FINAL; |
tfarina
2014/12/22 18:29:45
Out of curiosity, was this generated manually or u
|
- Reduction Reduce(Node* node) OVERRIDE; |
+ Reduction Reduce(Node* node) FINAL; |
private: |
Node* HeapNumberValueIndexConstant(); |