mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
mpz.h: fix typo in previous commit (found by Nikolaj)
This commit is contained in:
parent
9b54b4e784
commit
27e84c5ffc
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue