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

Unified Diff: src/compiler/zone-pool.h

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/x64/instruction-selector-x64.cc ('k') | src/d8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/zone-pool.h
diff --git a/src/compiler/zone-pool.h b/src/compiler/zone-pool.h
index 09d6183e0006c4c670496fc5fa7b3137f3cdae29..15866ea3581b9021c3d29dee8a09585fda5058b7 100644
--- a/src/compiler/zone-pool.h
+++ b/src/compiler/zone-pool.h
@@ -15,9 +15,9 @@ namespace v8 {
namespace internal {
namespace compiler {
-class ZonePool FINAL {
+class ZonePool final {
public:
- class Scope FINAL {
+ class Scope final {
public:
explicit Scope(ZonePool* zone_pool) : zone_pool_(zone_pool), zone_(NULL) {}
~Scope() { Destroy(); }
@@ -37,7 +37,7 @@ class ZonePool FINAL {
DISALLOW_COPY_AND_ASSIGN(Scope);
};
- class StatsScope FINAL {
+ class StatsScope final {
public:
explicit StatsScope(ZonePool* zone_pool);
~StatsScope();
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698