Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: src/d8.cc

Issue 1088993003: Replace OVERRIDE->override and FINAL->final since we now require C++11. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/zone-pool.h ('k') | src/elements.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.cc
diff --git a/src/d8.cc b/src/d8.cc
index f5f1b4041b9e2a26ae16479d366c7f7fb75ec630..c3b0bfcb430868547aa9593ab63036fed5c0d95c 100644
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -1584,9 +1584,9 @@ class ShellArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
class MockArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
public:
- void* Allocate(size_t) OVERRIDE { return malloc(1); }
- void* AllocateUninitialized(size_t length) OVERRIDE { return malloc(1); }
- void Free(void* p, size_t) OVERRIDE { free(p); }
+ void* Allocate(size_t) override { return malloc(1); }
+ void* AllocateUninitialized(size_t length) override { return malloc(1); }
+ void Free(void* p, size_t) override { free(p); }
};
« no previous file with comments | « src/compiler/zone-pool.h ('k') | src/elements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698