Refactoring and cleaning up geom iterator filtering.

This commit is contained in:
Stinkfist0
2017-02-03 19:15:37 +02:00
committed by Thomas Krijnen
parent 63b0488909
commit d8a11dd096
4 changed files with 81 additions and 116 deletions
+1 -1
View File
@@ -516,7 +516,7 @@ int main () {
}
case NEXT: {
Next n; n.read(std::cin);
has_more = iterator->next();
has_more = iterator->next() != 0;
if (!has_more) {
delete iterator;
iterator = 0;