Fix Cppcheck warning (use prefix increment for iterator)

This commit is contained in:
Daniel Marjamäki 2017-11-09 08:40:13 +01:00
parent 26b9e1528c
commit cc08d51505
1 changed files with 1 additions and 1 deletions

View File

@ -2890,7 +2890,7 @@ static Token * matchFunctionName(const Member &func, const std::list<ScopeInfo2>
if (funcScopeIt != func.scope.end()) {
if (it->name != *funcScopeIt)
return nullptr;
funcScopeIt++;
++funcScopeIt;
continue;
}