astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2020-12-19 08:56:46 +01:00
parent 6366a577f9
commit 1744cbaf66
3 changed files with 5 additions and 7 deletions

View File

@ -1611,8 +1611,7 @@ bool CheckUnusedVar::isFunctionWithoutSideEffects(const Function& func, const To
bool sideEffectReturnFound = false; bool sideEffectReturnFound = false;
std::set<const Variable*> pointersToGlobals; std::set<const Variable*> pointersToGlobals;
for (Token* bodyToken = func.functionScope->bodyStart->next(); bodyToken != func.functionScope->bodyEnd; for (Token* bodyToken = func.functionScope->bodyStart->next(); bodyToken != func.functionScope->bodyEnd;
bodyToken = bodyToken->next()) bodyToken = bodyToken->next()) {
{
// check variable inside function body // check variable inside function body
const Variable* bodyVariable = bodyToken->variable(); const Variable* bodyVariable = bodyToken->variable();
if (bodyVariable) { if (bodyVariable) {
@ -1631,8 +1630,7 @@ bool CheckUnusedVar::isFunctionWithoutSideEffects(const Function& func, const To
// check if pointer to global variable assigned to another variable (another_var = &global_var) // check if pointer to global variable assigned to another variable (another_var = &global_var)
if (Token::simpleMatch(bodyToken->tokAt(-1), "&") && Token::simpleMatch(bodyToken->tokAt(-2), "=")) { if (Token::simpleMatch(bodyToken->tokAt(-1), "&") && Token::simpleMatch(bodyToken->tokAt(-2), "=")) {
const Token* assigned_var_token = bodyToken->tokAt(-3); const Token* assigned_var_token = bodyToken->tokAt(-3);
if (assigned_var_token && assigned_var_token->variable()) if (assigned_var_token && assigned_var_token->variable()) {
{
pointersToGlobals.insert(assigned_var_token->variable()); pointersToGlobals.insert(assigned_var_token->variable());
} }
} }