aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/lookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/lookup.h')
-rw-r--r--deps/v8/src/lookup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/lookup.h b/deps/v8/src/lookup.h
index f658b13829..a574980c1f 100644
--- a/deps/v8/src/lookup.h
+++ b/deps/v8/src/lookup.h
@@ -12,7 +12,7 @@
namespace v8 {
namespace internal {
-class LookupIterator FINAL BASE_EMBEDDED {
+class LookupIterator final BASE_EMBEDDED {
public:
enum Configuration {
// Configuration bits.
@@ -142,7 +142,7 @@ class LookupIterator FINAL BASE_EMBEDDED {
Handle<Object> GetDataValue() const;
// Usually returns the value that was passed in, but may perform
// non-observable modifications on it, such as internalize strings.
- Handle<Object> WriteDataValue(Handle<Object> value);
+ void WriteDataValue(Handle<Object> value);
void InternalizeName();
private: