Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cfd71fd

Browse files
gengjiawennodejs-github-bot
authored andcommittedMar 23, 2022
1 parent 57dd7b8 commit cfd71fd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.5',
39+
'v8_embedder_string': '-node.6',
4040

4141
##### V8 defaults for Node.js #####
4242

‎deps/v8/include/v8-cppgc.h

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ struct WrapperDescriptor final {
7777
};
7878

7979
struct V8_EXPORT CppHeapCreateParams {
80+
CppHeapCreateParams(const CppHeapCreateParams&) = delete;
81+
CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete;
82+
8083
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
8184
WrapperDescriptor wrapper_descriptor;
8285
};

0 commit comments

Comments
 (0)
Please sign in to comment.