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

Unified Diff: src/ic/ic-state.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/ic/ic.h ('k') | src/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic-state.h
diff --git a/src/ic/ic-state.h b/src/ic/ic-state.h
index f35bac3522b6cc26bab8cf27533836f0b5a7bfd2..d3fdbe0dfbee75dd9d55286fdc297897bb424c3c 100644
--- a/src/ic/ic-state.h
+++ b/src/ic/ic-state.h
@@ -22,7 +22,7 @@ class ICUtility : public AllStatic {
};
-class CallICState FINAL BASE_EMBEDDED {
+class CallICState final BASE_EMBEDDED {
public:
explicit CallICState(ExtraICState extra_ic_state);
@@ -54,7 +54,7 @@ class CallICState FINAL BASE_EMBEDDED {
std::ostream& operator<<(std::ostream& os, const CallICState& s);
-class BinaryOpICState FINAL BASE_EMBEDDED {
+class BinaryOpICState final BASE_EMBEDDED {
public:
BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state);
@@ -195,7 +195,7 @@ class CompareICState {
};
-class LoadICState FINAL BASE_EMBEDDED {
+class LoadICState final BASE_EMBEDDED {
public:
explicit LoadICState(ExtraICState extra_ic_state) : state_(extra_ic_state) {}
« no previous file with comments | « src/ic/ic.h ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698