Skip to content

Commit

Permalink
issue #4582
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Jul 22, 2020
1 parent aab50ff commit ed58175
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util/mpq.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class mpq {
mpq():m_den(1) {}
mpq(mpq &&) noexcept = default;
mpq & operator=(mpq const &) = delete;
mpq & operator=(mpq&&) = 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 & denominator() const { return m_den; }
Expand Down

0 comments on commit ed58175

Please sign in to comment.