summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-05-13 10:14:04 -0700
committerGitHub <noreply@github.com>2022-05-13 10:14:04 -0700
commite4b3370c755125cc717cf7c017eada8109cda7f1 (patch)
tree4b5d1d07cc7a7f742fdae8cd2ecf392019b2a720 /src/wasm-type.h
parent93942d08b370dd0ee193d47b13472ee37747a75e (diff)
downloadbinaryen-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.h6
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;