Skip to content

Commit b186142

Browse files
committed
deps: V8: backport a11395433dbd
Original commit message: [cppgc]: Fix build on msvc Fixes compilation with msvc 2019 toolchain. See: #37330 (comment) Change-Id: I3b658d9ef49889c0a0467a1146e8d16b50fca65d Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2711152 Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#72917} Refs: v8/v8@a113954 PR-URL: #37330 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent d6b5061 commit b186142

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.13',
39+
'v8_embedder_string': '-node.14',
4040

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

deps/v8/include/v8-cppgc.h

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ class CppHeap;
2626
} // namespace internal
2727

2828
struct V8_EXPORT CppHeapCreateParams {
29+
CppHeapCreateParams(const CppHeapCreateParams&) = delete;
30+
CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete;
31+
2932
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
3033
};
3134

0 commit comments

Comments
 (0)