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

Unified Diff: src/ic/ic.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/ia32/lithium-ia32.h ('k') | src/ic/ic-state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic.h
diff --git a/src/ic/ic.h b/src/ic/ic.h
index 4da6e7ceccf5453f447339c627c6013ac3c6d405..712b695abb76bc0ba4e8d5fadc808dd07dbafd2e 100644
--- a/src/ic/ic.h
+++ b/src/ic/ic.h
@@ -418,7 +418,7 @@ class LoadIC : public IC {
}
}
- Handle<Code> megamorphic_stub() OVERRIDE;
+ Handle<Code> megamorphic_stub() override;
// Update the inline cache and the global stub cache based on the
// lookup result.
@@ -426,7 +426,7 @@ class LoadIC : public IC {
virtual Handle<Code> CompileHandler(LookupIterator* lookup,
Handle<Object> unused,
- CacheHolderFlag cache_holder) OVERRIDE;
+ CacheHolderFlag cache_holder) override;
private:
virtual Handle<Code> pre_monomorphic_stub() const;
@@ -556,7 +556,7 @@ class StoreIC : public IC {
protected:
// Stub accessors.
- Handle<Code> megamorphic_stub() OVERRIDE;
+ Handle<Code> megamorphic_stub() override;
Handle<Code> slow_stub() const;
virtual Handle<Code> pre_monomorphic_stub() const {
@@ -572,7 +572,7 @@ class StoreIC : public IC {
JSReceiver::StoreFromKeyed store_mode);
virtual Handle<Code> CompileHandler(LookupIterator* lookup,
Handle<Object> value,
- CacheHolderFlag cache_holder) OVERRIDE;
+ CacheHolderFlag cache_holder) override;
private:
inline void set_target(Code* code);
« no previous file with comments | « src/ia32/lithium-ia32.h ('k') | src/ic/ic-state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698