Fix Cppcheck warning (use prefix increment for iterator)
This commit is contained in:
parent
26b9e1528c
commit
cc08d51505
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue