mirror of
https://github.com/Z3Prover/z3
synced 2025-08-11 05:30:51 +00:00
remove unneeded iterator functions
This commit is contained in:
parent
737c2208fa
commit
499ed5d844
32 changed files with 27 additions and 87 deletions
|
@ -194,7 +194,6 @@ public:
|
|||
SASSERT(invariant());
|
||||
}
|
||||
unsigned operator*() const { return m_index; }
|
||||
bool operator==(iterator const& it) const { return m_index == it.m_index; }
|
||||
bool operator!=(iterator const& it) const { return m_index != it.m_index; }
|
||||
iterator & operator++() { ++m_index; scan(); return *this; }
|
||||
iterator operator++(int) { iterator tmp = *this; ++*this; return tmp; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue