diff options
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 0af60600d..935ffbae6 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1120,7 +1120,7 @@ public: }; class WasmBinaryBuilder { - AllocatingModule& wasm; + Module& wasm; MixedArena& allocator; std::vector<char>& input; bool debug; @@ -1129,7 +1129,7 @@ class WasmBinaryBuilder { int32_t startIndex = -1; public: - WasmBinaryBuilder(AllocatingModule& wasm, std::vector<char>& input, bool debug) : wasm(wasm), allocator(wasm.allocator), input(input), debug(debug) {} + WasmBinaryBuilder(Module& wasm, std::vector<char>& input, bool debug) : wasm(wasm), allocator(wasm.allocator), input(input), debug(debug) {} void read() { |