mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 20:50:50 +00:00
fix typo
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
849385c6a1
commit
920c207a27
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ public:
|
||||||
|
|
||||||
checked_int64 & operator--() {
|
checked_int64 & operator--() {
|
||||||
if (CHECK && m_value == INT64_MIN) {
|
if (CHECK && m_value == INT64_MIN) {
|
||||||
throw overflo9w_exception();
|
throw overflow_exception();
|
||||||
}
|
}
|
||||||
--m_value;
|
--m_value;
|
||||||
return *this;
|
return *this;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue