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

Unified Diff: src/compiler/code-generator.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/change-lowering.h ('k') | src/compiler/code-generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/code-generator.h
diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h
index 9b3c51f97cb89b4d8ac7d48dfc65f1e9450456b2..9e496537dbf59694343b4b764ee52d5a29ddfb48 100644
--- a/src/compiler/code-generator.h
+++ b/src/compiler/code-generator.h
@@ -28,7 +28,7 @@ struct BranchInfo {
// Generates native code for a sequence of instructions.
-class CodeGenerator FINAL : public GapResolver::Assembler {
+class CodeGenerator final : public GapResolver::Assembler {
public:
explicit CodeGenerator(Frame* frame, Linkage* linkage,
InstructionSequence* code, CompilationInfo* info);
@@ -99,9 +99,9 @@ class CodeGenerator FINAL : public GapResolver::Assembler {
// Interface used by the gap resolver to emit moves and swaps.
void AssembleMove(InstructionOperand* source,
- InstructionOperand* destination) FINAL;
+ InstructionOperand* destination) final;
void AssembleSwap(InstructionOperand* source,
- InstructionOperand* destination) FINAL;
+ InstructionOperand* destination) final;
// ===========================================================================
// =================== Jump table construction methods. ======================
« no previous file with comments | « src/compiler/change-lowering.h ('k') | src/compiler/code-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698