Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorJiawen Geng <technicalcute@gmail.com>2022-03-17 13:33:07 +0300
committerMichaƫl Zasso <targos@protonmail.com>2022-04-21 12:55:07 +0300
commit5820d145ad9366677b6bb111727c543811c53c8f (patch)
treeeee3a50240be5aec48ca6eb2907b7d158048ef15 /deps
parentc237c377ac97f56bae0b0341b25c7808dc777c4b (diff)
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>
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/include/v8-cppgc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/deps/v8/include/v8-cppgc.h b/deps/v8/include/v8-cppgc.h
index 412154930f7..401e4922106 100644
--- a/deps/v8/include/v8-cppgc.h
+++ b/deps/v8/include/v8-cppgc.h
@@ -77,6 +77,9 @@ struct WrapperDescriptor final {
};
struct V8_EXPORT CppHeapCreateParams {
+ CppHeapCreateParams(const CppHeapCreateParams&) = delete;
+ CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete;
+
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
WrapperDescriptor wrapper_descriptor;
};