diff --git a/src/util/checked_int64.h b/src/util/checked_int64.h index e202f6769..b1cb6e448 100644 --- a/src/util/checked_int64.h +++ b/src/util/checked_int64.h @@ -107,7 +107,7 @@ public: checked_int64 & operator--() { if (CHECK && m_value == INT64_MIN) { - throw overflo9w_exception(); + throw overflow_exception(); } --m_value; return *this;