mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
win,build: fix MSVS v17.14 compilation issue
Fixes: https://github.com/nodejs/node/issues/58801 PR-URL: https://github.com/nodejs/node/pull/58902 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
This commit is contained in:
parent
8cf5d66ab7
commit
9c0cb487ec
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
# Reset this number to 0 on major V8 upgrades.
|
||||
# Increment by one for each non-official patch applied to deps/v8.
|
||||
'v8_embedder_string': '-node.26',
|
||||
'v8_embedder_string': '-node.27',
|
||||
|
||||
##### V8 defaults for Node.js #####
|
||||
|
||||
|
|
2
deps/v8/src/heap/cppgc/marking-state.h
vendored
2
deps/v8/src/heap/cppgc/marking-state.h
vendored
|
@ -342,7 +342,7 @@ class MutatorMarkingState final : public BasicMarkingState {
|
|||
~MutatorMarkingState() override = default;
|
||||
|
||||
inline bool MarkNoPush(HeapObjectHeader& header) {
|
||||
return MutatorMarkingState::BasicMarkingState::MarkNoPush(header);
|
||||
return BasicMarkingState::MarkNoPush(header);
|
||||
}
|
||||
|
||||
inline void ReTraceMarkedWeakContainer(cppgc::Visitor&, HeapObjectHeader&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue