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

Unified Diff: src/compiler/graph-reducer.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/gap-resolver.h ('k') | src/compiler/graph-visualizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/graph-reducer.h
diff --git a/src/compiler/graph-reducer.h b/src/compiler/graph-reducer.h
index 5c612baf6ebf753af11b87d4277e0e915506799f..a6cc1f2d94b0b14974907cd37b83ac7d8d81a448 100644
--- a/src/compiler/graph-reducer.h
+++ b/src/compiler/graph-reducer.h
@@ -18,7 +18,7 @@ class Node;
// Represents the result of trying to reduce a node in the graph.
-class Reduction FINAL {
+class Reduction final {
public:
explicit Reduction(Node* replacement = NULL) : replacement_(replacement) {}
@@ -54,7 +54,7 @@ class Reducer {
// Performs an iterative reduction of a node graph.
-class GraphReducer FINAL {
+class GraphReducer final {
public:
GraphReducer(Graph* graph, Zone* zone);
« no previous file with comments | « src/compiler/gap-resolver.h ('k') | src/compiler/graph-visualizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698