refactoring

This commit is contained in:
Daniel Marjamäki 2022-08-21 17:33:43 +02:00
parent d81a758850
commit c820d2ba97
1 changed files with 2 additions and 4 deletions

View File

@ -1876,12 +1876,10 @@ bool isUniqueExpression(const Token* tok)
v.isPointer() == var->isPointer() &&
v.name() != var->name();
};
bool other = std::any_of(scope->varlist.cbegin(), scope->varlist.cend(), pred);
if (other)
if (std::any_of(scope->varlist.cbegin(), scope->varlist.cend(), pred))
return false;
if (fun) {
other = std::any_of(fun->argumentList.cbegin(), fun->argumentList.cend(), pred);
if (other)
if (std::any_of(fun->argumentList.cbegin(), fun->argumentList.cend(), pred))
return false;
}
} else if (!isUniqueExpression(tok->astOperand1())) {