1
0
Fork 0

use prefix increment to please cppcheck

This commit is contained in:
jsteemann 2019-04-04 23:07:50 +02:00
parent 9d7f893511
commit 83ed1d85eb
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ std::pair<ExecutionState, NoStats> HashedCollectExecutor::produceRow(OutputAqlIt
// produce output
if (_currentGroup != _allGroups.end()) {
writeCurrentGroupToOutput(output);
_currentGroup++;
++_currentGroup;
}
ExecutionState state = _currentGroup != _allGroups.end() ? ExecutionState::HASMORE