1
0
Fork 0

Fixed iterator

This commit is contained in:
Simon Grätzer 2017-04-18 17:17:28 +02:00
parent 01e27b803f
commit c31d4c1590
2 changed files with 2 additions and 0 deletions

View File

@ -97,6 +97,8 @@ bool MultiIndexIterator::next(TokenCallback const& callback, size_t limit) {
if (_currentIdx >= _iterators.size()) {
_current = nullptr;
return false;
} else {
_current = _iterators.at(_currentIdx);
}
}
}