We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c19c7e commit c743580Copy full SHA for c743580
src/s2wasm.h
@@ -948,13 +948,12 @@ class S2WasmBuilder {
948
// find asmConst calls, and emit their metadata
949
struct AsmConstWalker : public WasmWalker {
950
S2WasmBuilder* parent;
951
- std::ostream& o;
952
953
std::map<std::string, std::set<std::string>> sigsForCode;
954
std::map<std::string, size_t> ids;
955
std::set<std::string> allSigs;
956
957
- AsmConstWalker(S2WasmBuilder* parent) : parent(parent), o(o) {}
+ AsmConstWalker(S2WasmBuilder* parent) : parent(parent) {}
958
959
void visitCallImport(CallImport* curr) override {
960
if (curr->target == EMSCRIPTEN_ASM_CONST) {
0 commit comments