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

Unified Diff: src/compiler/js-inlining.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/js-generic-lowering.h ('k') | src/compiler/js-intrinsic-lowering.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-inlining.h
diff --git a/src/compiler/js-inlining.h b/src/compiler/js-inlining.h
index 0059b1c56c1c4ff2f0e07a3650715de793de0fb9..174b1e9a7abadcb2edd16c5da7a7c80d8dea7096 100644
--- a/src/compiler/js-inlining.h
+++ b/src/compiler/js-inlining.h
@@ -14,7 +14,7 @@ namespace compiler {
class JSCallFunctionAccessor;
-class JSInliner FINAL : public Reducer {
+class JSInliner final : public Reducer {
public:
enum Mode { kBuiltinsInlining, kGeneralInlining };
@@ -22,7 +22,7 @@ class JSInliner FINAL : public Reducer {
JSGraph* jsgraph)
: mode_(mode), local_zone_(local_zone), info_(info), jsgraph_(jsgraph) {}
- Reduction Reduce(Node* node) FINAL;
+ Reduction Reduce(Node* node) final;
private:
Mode const mode_;
« no previous file with comments | « src/compiler/js-generic-lowering.h ('k') | src/compiler/js-intrinsic-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698