diff --git a/common.gypi b/common.gypi index 637f8494dea889..388967b43bed3e 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.16', + 'v8_embedder_string': '-node.17', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/include/v8-local-handle.h b/deps/v8/include/v8-local-handle.h index 46f7308431af0d..fd543ae3aaa4fa 100644 --- a/deps/v8/include/v8-local-handle.h +++ b/deps/v8/include/v8-local-handle.h @@ -398,8 +398,7 @@ class V8_TRIVIAL_ABI Local : public LocalBase, explicit Local(const Local& other, no_checking_tag do_not_check) : LocalBase(other), StackAllocated(do_not_check) {} - V8_INLINE explicit Local(const LocalBase& other) - : LocalBase(other) {} + V8_INLINE explicit Local(const LocalBase& other) : LocalBase(other) {} V8_INLINE static Local FromSlot(internal::Address* slot) { return Local(LocalBase::FromSlot(slot));