mirror of
https://github.com/Z3Prover/z3
synced 2026-05-05 18:05:15 +00:00
remove unneeded iterator functions
This commit is contained in:
parent
737c2208fa
commit
499ed5d844
32 changed files with 27 additions and 87 deletions
|
|
@ -44,7 +44,6 @@ public:
|
|||
T const & operator*() const { return m_curr->head(); }
|
||||
iterator & operator++() { m_curr = m_curr->tail(); return *this; }
|
||||
iterator operator++(int) { iterator tmp = *this; ++*this; return tmp; }
|
||||
bool operator==(iterator const & it) { return m_curr == it.m_curr; }
|
||||
bool operator!=(iterator const & it) { return m_curr != it.m_curr; }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue