diff options
author | Alon Zakai <azakai@google.com> | 2022-05-13 10:14:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 10:14:04 -0700 |
commit | e4b3370c755125cc717cf7c017eada8109cda7f1 (patch) | |
tree | 4b5d1d07cc7a7f742fdae8cd2ecf392019b2a720 /src/wasm-type.h | |
parent | 93942d08b370dd0ee193d47b13472ee37747a75e (diff) | |
download | binaryen-e4b3370c755125cc717cf7c017eada8109cda7f1.tar.gz binaryen-e4b3370c755125cc717cf7c017eada8109cda7f1.tar.bz2 binaryen-e4b3370c755125cc717cf7c017eada8109cda7f1.zip |
Followups to #3841 (#3842)
If we don't think that preventing copies in assignment makes sense by
itself (since we allow them on construction) then I think we can just
remove the restriction and also the implicit copy constructor.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index a75466882..6b1608ddc 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -474,12 +474,6 @@ struct Tuple { Tuple(const TypeList& types) : types(types) { validate(); } Tuple(TypeList&& types) : types(std::move(types)) { validate(); } - // Allow copies when constructing. - Tuple(const Tuple& other) : types(other.types) { validate(); } - - // Prevent accidental copies. - Tuple& operator=(const Tuple&) = delete; - bool operator==(const Tuple& other) const { return types == other.types; } bool operator!=(const Tuple& other) const { return !(*this == other); } std::string toString() const; |