mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 12:11:23 +00:00
remove unneeded iterator functions
This commit is contained in:
parent
737c2208fa
commit
499ed5d844
32 changed files with 27 additions and 87 deletions
|
@ -94,7 +94,6 @@ namespace dimacs {
|
|||
iterator(drat_parser& p, bool is_eof):p(p), m_eof(is_eof) { if (!m_eof) m_eof = !p.next(); }
|
||||
drat_record const& operator*() { return p.m_record; }
|
||||
iterator& operator++() { if (!p.next()) m_eof = true; return *this;}
|
||||
bool operator==(iterator const& other) const { return m_eof == other.m_eof; }
|
||||
bool operator!=(iterator const& other) const { return m_eof != other.m_eof; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue