3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-08-12 19:23:11 -07:00
parent 849385c6a1
commit 920c207a27

View file

@ -107,7 +107,7 @@ public:
checked_int64 & operator--() {
if (CHECK && m_value == INT64_MIN) {
throw overflo9w_exception();
throw overflow_exception();
}
--m_value;
return *this;