Do not show redundant unsupported errors in SMTChecker

This commit is contained in:
Leo Alt
2021-08-27 16:25:09 +02:00
parent 327571db88
commit 8e81df1bd3
11 changed files with 132 additions and 40 deletions
+1
View File
@@ -105,6 +105,7 @@ struct ErrorId
unsigned long long error = 0;
bool operator==(ErrorId const& _rhs) const { return error == _rhs.error; }
bool operator!=(ErrorId const& _rhs) const { return !(*this == _rhs); }
bool operator<(ErrorId const& _rhs) const { return error < _rhs.error; }
};
constexpr ErrorId operator"" _error(unsigned long long _error) { return ErrorId{ _error }; }