mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
deps: V8: cherry-pick 9812cb486e2b
Original commit message:
[api] Remove template id from Local constructor
According to GCC version 14, this is deprecated in C++20.
Change-Id: Iaab14c2db56b3787e391e4d50a9099015169d63f
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5713754
Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
Auto-Submit: Michaël Zasso <mic.besace@gmail.com>
Reviewed-by: Camillo Bruni <cbruni@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/main@{#95084}
Refs: 9812cb486e
PR-URL: https://github.com/nodejs/node/pull/53966
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
This commit is contained in:
parent
097a52848e
commit
1c1c9bf33a
@ -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 #####
|
||||
|
||||
|
3
deps/v8/include/v8-local-handle.h
vendored
3
deps/v8/include/v8-local-handle.h
vendored
@ -398,8 +398,7 @@ class V8_TRIVIAL_ABI Local : public LocalBase<T>,
|
||||
explicit Local(const Local<T>& other, no_checking_tag do_not_check)
|
||||
: LocalBase<T>(other), StackAllocated(do_not_check) {}
|
||||
|
||||
V8_INLINE explicit Local<T>(const LocalBase<T>& other)
|
||||
: LocalBase<T>(other) {}
|
||||
V8_INLINE explicit Local(const LocalBase<T>& other) : LocalBase<T>(other) {}
|
||||
|
||||
V8_INLINE static Local<T> FromSlot(internal::Address* slot) {
|
||||
return Local<T>(LocalBase<T>::FromSlot(slot));
|
||||
|
Loading…
Reference in New Issue
Block a user