mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
mpz.h: fix typo in previous commit (found by Nikolaj)
This commit is contained in:
parent
9b54b4e784
commit
27e84c5ffc
|
@ -95,7 +95,7 @@ public:
|
|||
mpz(int v):m_val(v), m_ptr(0) {}
|
||||
mpz():m_val(0), m_ptr(0) {}
|
||||
mpz(mpz && other) noexcept : m_val(other.m_val), m_ptr(0) {
|
||||
std::swap(m_val, other.m_val);
|
||||
std::swap(m_ptr, other.m_ptr);
|
||||
}
|
||||
void swap(mpz & other) {
|
||||
std::swap(m_val, other.m_val);
|
||||
|
|
Loading…
Reference in a new issue