mirror of https://github.com/nodejs/node.git
deps: V8: fix v8-cppgc.h for MSVC
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=12661 Refs: https://github.com/nodejs/node/issues/42375 PR-URL: https://github.com/nodejs/node/pull/42657 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/45579 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
f2318cd4b5
commit
9f84d3eea8
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
# Reset this number to 0 on major V8 upgrades.
|
# Reset this number to 0 on major V8 upgrades.
|
||||||
# Increment by one for each non-official patch applied to deps/v8.
|
# Increment by one for each non-official patch applied to deps/v8.
|
||||||
'v8_embedder_string': '-node.1',
|
'v8_embedder_string': '-node.2',
|
||||||
|
|
||||||
##### V8 defaults for Node.js #####
|
##### V8 defaults for Node.js #####
|
||||||
|
|
||||||
|
|
|
@ -77,6 +77,9 @@ struct WrapperDescriptor final {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct V8_EXPORT CppHeapCreateParams {
|
struct V8_EXPORT CppHeapCreateParams {
|
||||||
|
CppHeapCreateParams(const CppHeapCreateParams&) = delete;
|
||||||
|
CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete;
|
||||||
|
|
||||||
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
|
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
|
||||||
WrapperDescriptor wrapper_descriptor;
|
WrapperDescriptor wrapper_descriptor;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue