Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
pfultz2 committed May 21, 2024
1 parent f3eec96 commit 730442e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/forwardanalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ namespace {
return actions.isModified();
}

bool stopOnCondition(const Token* condTok) {
if(analyzer->isConditional() && findAstNode(condTok, [](const Token* tok) {
bool stopOnCondition(const Token* condTok)
{
if (analyzer->isConditional() && findAstNode(condTok, [](const Token* tok) {
return tok->isIncompleteVar();
}))
return true;
Expand Down

0 comments on commit 730442e

Please sign in to comment.