Skip to content

Commit c743580

Browse files
committed
remove old debug code from s2wasm ; closes #14
1 parent 8c19c7e commit c743580

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/s2wasm.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -948,13 +948,12 @@ class S2WasmBuilder {
948948
// find asmConst calls, and emit their metadata
949949
struct AsmConstWalker : public WasmWalker {
950950
S2WasmBuilder* parent;
951-
std::ostream& o;
952951

953952
std::map<std::string, std::set<std::string>> sigsForCode;
954953
std::map<std::string, size_t> ids;
955954
std::set<std::string> allSigs;
956955

957-
AsmConstWalker(S2WasmBuilder* parent) : parent(parent), o(o) {}
956+
AsmConstWalker(S2WasmBuilder* parent) : parent(parent) {}
958957

959958
void visitCallImport(CallImport* curr) override {
960959
if (curr->target == EMSCRIPTEN_ASM_CONST) {

0 commit comments

Comments
 (0)