diff options
Diffstat (limited to 'src/hir/type.hpp')
-rw-r--r-- | src/hir/type.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hir/type.hpp b/src/hir/type.hpp index 0c98773f..2fc1179d 100644 --- a/src/hir/type.hpp +++ b/src/hir/type.hpp @@ -159,6 +159,9 @@ public: (Enum, const ::HIR::Enum*) ), (), (), ( TypePathBinding clone() const; + + bool operator==(const TypePathBinding& x) const; + bool operator!=(const TypePathBinding& x) const { return !(*this == x); } ) ); |