3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

remove unneeded iterator functions

This commit is contained in:
Nuno Lopes 2024-09-23 12:57:54 +01:00
parent 737c2208fa
commit 499ed5d844
32 changed files with 27 additions and 87 deletions

View file

@ -122,7 +122,7 @@ namespace datalog {
m_end(t.m_data.end()), m_row_obj(*this) {}
bool is_finished() const override {
return m_inner==m_end;
return !(m_inner != m_end);
}
row_interface & operator*() override {