mirror of
https://github.com/Z3Prover/z3
synced 2025-08-12 06:00:53 +00:00
remove unneeded iterator functions
This commit is contained in:
parent
737c2208fa
commit
499ed5d844
32 changed files with 27 additions and 87 deletions
|
@ -170,8 +170,7 @@ public:
|
|||
const_iterator operator++() { const_iterator i = *this; m_it++; return i; }
|
||||
const_iterator operator++(int) { m_it++; return *this; }
|
||||
const_iterator(u_map<mpq>::iterator it) : m_it(it) {}
|
||||
bool operator==(const const_iterator &other) const { return m_it == other.m_it; }
|
||||
bool operator!=(const const_iterator &other) const { return !(*this == other); }
|
||||
bool operator!=(const const_iterator &other) const { return m_it != other.m_it; }
|
||||
};
|
||||
|
||||
bool is_normalized() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue