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 (funcScopeIt != func.scope.end()) {
|
||||||
if (it->name != *funcScopeIt)
|
if (it->name != *funcScopeIt)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
funcScopeIt++;
|
++funcScopeIt;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue