mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
#4582 again
This commit is contained in:
parent
1059f6d3b8
commit
2d4839f89e
|
@ -30,7 +30,6 @@ public:
|
|||
mpq(int v):m_num(v), m_den(1) {}
|
||||
mpq():m_den(1) {}
|
||||
mpq(mpq &&) noexcept = default;
|
||||
mpq & operator=(mpq const &) = default;
|
||||
mpq & operator=(mpq&&) = default;
|
||||
void swap(mpq & other) { m_num.swap(other.m_num); m_den.swap(other.m_den); }
|
||||
mpz const & numerator() const { return m_num; }
|
||||
|
|
Loading…
Reference in a new issue