astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2020-02-12 18:52:26 +01:00
parent 2138091fa3
commit 3675f49a53
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ PathAnalysis::Progress PathAnalysis::forwardRange(const Token* startToken, const
else if (Token::Match(tok, "return|throw")) {
forwardRecursive(tok, info, f);
return Progress::Break;
// Evaluate RHS of assignment before LHS
// Evaluate RHS of assignment before LHS
} else if (const Token* assignTok = assignExpr(tok)) {
if (forwardRecursive(assignTok->astOperand2(), info, f) == Progress::Break)
return Progress::Break;