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:
StefanStojanovic 2025-07-02 13:05:26 +02:00 committed by RafaelGSS
parent 8cf5d66ab7
commit 9c0cb487ec
No known key found for this signature in database
GPG key ID: 8BEAB4DFCF555EF4
2 changed files with 2 additions and 2 deletions

View file

@ -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 #####

View file

@ -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&);