mirror of
https://github.com/Z3Prover/z3
synced 2025-06-24 14:53:40 +00:00
delete dead code
This commit is contained in:
parent
1eed058b98
commit
be3c7d7115
1 changed files with 0 additions and 3 deletions
|
@ -32,13 +32,10 @@ public:
|
||||||
mpq(mpq &&) noexcept = default;
|
mpq(mpq &&) noexcept = default;
|
||||||
mpq & operator=(mpq&&) = default;
|
mpq & operator=(mpq&&) = default;
|
||||||
mpq & operator=(mpq const&) = delete;
|
mpq & operator=(mpq const&) = delete;
|
||||||
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; }
|
||||||
mpz const & denominator() const { return m_den; }
|
mpz const & denominator() const { return m_den; }
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void swap(mpq & m1, mpq & m2) { m1.swap(m2); }
|
|
||||||
|
|
||||||
template<bool SYNCH = true>
|
template<bool SYNCH = true>
|
||||||
class mpq_manager : public mpz_manager<SYNCH> {
|
class mpq_manager : public mpz_manager<SYNCH> {
|
||||||
mpz m_tmp1;
|
mpz m_tmp1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue