Index: src/ast-value-factory.h |
diff --git a/src/ast-value-factory.h b/src/ast-value-factory.h |
index c9fd8121588c3ac39b1b53959f3b816372b947b0..6570db26ffa88cb4f3fc50cd5ec34870830cd6b0 100644 |
--- a/src/ast-value-factory.h |
+++ b/src/ast-value-factory.h |
@@ -64,7 +64,7 @@ class AstString : public ZoneObject { |
class AstRawString : public AstString { |
public: |
- int length() const OVERRIDE { |
+ int length() const override { |
if (is_one_byte_) |
return literal_bytes_.length(); |
return literal_bytes_.length() / 2; |
@@ -72,7 +72,7 @@ class AstRawString : public AstString { |
int byte_length() const { return literal_bytes_.length(); } |
- void Internalize(Isolate* isolate) OVERRIDE; |
+ void Internalize(Isolate* isolate) override; |
bool AsArrayIndex(uint32_t* index) const; |
@@ -121,9 +121,9 @@ class AstConsString : public AstString { |
: left_(left), |
right_(right) {} |
- int length() const OVERRIDE { return left_->length() + right_->length(); } |
+ int length() const override { return left_->length() + right_->length(); } |
- void Internalize(Isolate* isolate) OVERRIDE; |
+ void Internalize(Isolate* isolate) override; |
private: |
friend class AstValueFactory; |