summaryrefslogtreecommitdiff
path: root/src/s2wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/s2wasm.h')
-rw-r--r--src/s2wasm.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/s2wasm.h b/src/s2wasm.h
index 449b6f56c..39100f01d 100644
--- a/src/s2wasm.h
+++ b/src/s2wasm.h
@@ -948,13 +948,12 @@ public:
// find asmConst calls, and emit their metadata
struct AsmConstWalker : public WasmWalker {
S2WasmBuilder* parent;
- std::ostream& o;
std::map<std::string, std::set<std::string>> sigsForCode;
std::map<std::string, size_t> ids;
std::set<std::string> allSigs;
- AsmConstWalker(S2WasmBuilder* parent) : parent(parent), o(o) {}
+ AsmConstWalker(S2WasmBuilder* parent) : parent(parent) {}
void visitCallImport(CallImport* curr) override {
if (curr->target == EMSCRIPTEN_ASM_CONST) {