We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6b5061 commit b186142Copy full SHA for b186142
common.gypi
@@ -36,7 +36,7 @@
36
37
# Reset this number to 0 on major V8 upgrades.
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.13',
+ 'v8_embedder_string': '-node.14',
40
41
##### V8 defaults for Node.js #####
42
deps/v8/include/v8-cppgc.h
@@ -26,6 +26,9 @@ class CppHeap;
26
} // namespace internal
27
28
struct V8_EXPORT CppHeapCreateParams {
29
+ CppHeapCreateParams(const CppHeapCreateParams&) = delete;
30
+ CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete;
31
+
32
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
33
};
34
0 commit comments