diff options
Diffstat (limited to 'src/wasm-builder.h')
-rw-r--r-- | src/wasm-builder.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wasm-builder.h b/src/wasm-builder.h index ca3fed286..a3b0febaa 100644 --- a/src/wasm-builder.h +++ b/src/wasm-builder.h @@ -125,11 +125,9 @@ public: return glob; } - static std::unique_ptr<Tag> - makeTag(Name name, uint32_t attribute, Signature sig) { + static std::unique_ptr<Tag> makeTag(Name name, Signature sig) { auto tag = std::make_unique<Tag>(); tag->name = name; - tag->attribute = attribute; tag->sig = sig; return tag; } |