Index: src/code-factory.h |
diff --git a/src/code-factory.h b/src/code-factory.h |
index f8af73b18ea06650dde8b321cf2b950f7038ad21..d2c4a17fc23c004179a0f72de0de882be1403fba 100644 |
--- a/src/code-factory.h |
+++ b/src/code-factory.h |
@@ -15,7 +15,7 @@ namespace v8 { |
namespace internal { |
// Associates a body of code with an interface descriptor. |
-class Callable FINAL BASE_EMBEDDED { |
+class Callable final BASE_EMBEDDED { |
public: |
Callable(Handle<Code> code, CallInterfaceDescriptor descriptor) |
: code_(code), descriptor_(descriptor) {} |
@@ -29,7 +29,7 @@ class Callable FINAL BASE_EMBEDDED { |
}; |
-class CodeFactory FINAL { |
+class CodeFactory final { |
public: |
// Initial states for ICs. |
static Callable LoadGlobalIC(Isolate* isolate, Handle<GlobalObject> global, |