diff options
Diffstat (limited to 'src/mask.h')
-rw-r--r-- | src/mask.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -74,6 +74,9 @@ public: mask_t& operator=(const string& other); + bool operator<(const mask_t& other) const { + return expr < other.expr; + } bool operator==(const mask_t& other) const { return expr == other.expr; } |