mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 02:42:02 +00:00
#4582 again
This commit is contained in:
parent
1059f6d3b8
commit
2d4839f89e
1 changed files with 0 additions and 1 deletions
|
@ -30,7 +30,6 @@ public:
|
||||||
mpq(int v):m_num(v), m_den(1) {}
|
mpq(int v):m_num(v), m_den(1) {}
|
||||||
mpq():m_den(1) {}
|
mpq():m_den(1) {}
|
||||||
mpq(mpq &&) noexcept = default;
|
mpq(mpq &&) noexcept = default;
|
||||||
mpq & operator=(mpq const &) = default;
|
|
||||||
mpq & operator=(mpq&&) = default;
|
mpq & operator=(mpq&&) = default;
|
||||||
void swap(mpq & other) { m_num.swap(other.m_num); m_den.swap(other.m_den); }
|
void swap(mpq & other) { m_num.swap(other.m_num); m_den.swap(other.m_den); }
|
||||||
mpz const & numerator() const { return m_num; }
|
mpz const & numerator() const { return m_num; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue