Index: src/string-stream.h |
diff --git a/src/string-stream.h b/src/string-stream.h |
index e2475ff3b3921ecb5dbffdab57751cd4a782e4d0..fca1d4beab9329a0047f10b3f3411da592119913 100644 |
--- a/src/string-stream.h |
+++ b/src/string-stream.h |
@@ -24,18 +24,18 @@ class StringAllocator { |
// Normal allocator uses new[] and delete[]. |
-class HeapStringAllocator V8_FINAL : public StringAllocator { |
+class HeapStringAllocator FINAL : public StringAllocator { |
public: |
~HeapStringAllocator() { DeleteArray(space_); } |
- virtual char* allocate(unsigned bytes) V8_OVERRIDE; |
- virtual char* grow(unsigned* bytes) V8_OVERRIDE; |
+ virtual char* allocate(unsigned bytes) OVERRIDE; |
+ virtual char* grow(unsigned* bytes) OVERRIDE; |
private: |
char* space_; |
}; |
-class FmtElm V8_FINAL { |
+class FmtElm FINAL { |
public: |
FmtElm(int value) : type_(INT) { // NOLINT |
data_.u_int_ = value; |
@@ -75,7 +75,7 @@ class FmtElm V8_FINAL { |
}; |
-class StringStream V8_FINAL { |
+class StringStream FINAL { |
public: |
explicit StringStream(StringAllocator* allocator): |
allocator_(allocator), |