diff options
author | Michaƫl Zasso <targos@protonmail.com> | 2022-09-21 15:47:37 +0200 |
---|---|---|
committer | Node.js GitHub Bot <github-bot@iojs.org> | 2022-11-19 09:11:38 +0000 |
commit | 4db47f28f08d4e9c4c436170f381568b85397ed9 (patch) | |
tree | 6f1a24f525fbc07cd6aedd8b21b9f0452423f540 /deps/v8 | |
parent | 1cf4ad7ebe44ba3d780837e98c8b13e288c47757 (diff) | |
download | node-new-4db47f28f08d4e9c4c436170f381568b85397ed9.tar.gz |
deps: fix V8 build on Windows with MSVC
PR-URL: https://github.com/nodejs/node/pull/44741
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/45230
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Diffstat (limited to 'deps/v8')
-rw-r--r-- | deps/v8/src/wasm/function-body-decoder-impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/wasm/function-body-decoder-impl.h b/deps/v8/src/wasm/function-body-decoder-impl.h index e140ea524a..a8a173e0a5 100644 --- a/deps/v8/src/wasm/function-body-decoder-impl.h +++ b/deps/v8/src/wasm/function-body-decoder-impl.h @@ -2171,7 +2171,7 @@ class WasmDecoder : public Decoder { } // TODO(clemensb): This is only used by the interpreter; move there. - V8_EXPORT_PRIVATE std::pair<uint32_t, uint32_t> StackEffect(const byte* pc) { + std::pair<uint32_t, uint32_t> StackEffect(const byte* pc) { WasmOpcode opcode = static_cast<WasmOpcode>(*pc); // Handle "simple" opcodes with a fixed signature first. const FunctionSig* sig = WasmOpcodes::Signature(opcode); |