diff options
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 41a89d4fe..03e8c129f 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -173,9 +173,6 @@ public: bool operator!=(const Type& other) const { return id != other.id; } bool operator!=(const BasicType& other) const { return id != other; } - // Order types by some notion of simplicity. - bool operator<(const Type& other) const; - // Returns the type size in bytes. Only single types are supported. unsigned getByteSize() const; @@ -362,9 +359,6 @@ public: bool operator!=(const HeapType& other) const { return id != other.id; } bool operator!=(const BasicHeapType& other) const { return id != other; } - // Order heap types by some notion of simplicity. - bool operator<(const HeapType& other) const; - // Returns true if left is a subtype of right. Subtype includes itself. static bool isSubType(HeapType left, HeapType right); @@ -414,7 +408,6 @@ struct Signature { return params == other.params && results == other.results; } bool operator!=(const Signature& other) const { return !(*this == other); } - bool operator<(const Signature& other) const; std::string toString() const; }; |