Skip to content

Commit 63ac630

Browse files
authored
forwardanalyzer.cpp: Fix typo (#5937)
this one caught me off guard 😆😆
1 parent de4516b commit 63ac630

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/forwardanalyzer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ namespace {
654654
} else if (tok->isControlFlowKeyword() && Token::Match(tok, "if|while|for (") &&
655655
Token::simpleMatch(tok->next()->link(), ") {")) {
656656
if (settings.checkLevel == Settings::CheckLevel::normal && ++branchCount > 4) {
657-
reportError(Severity::information, "normalCheckLevelMaxBranches", "Limit analysis of branches. Use --check-level=exhausive to analyze all branches.");
657+
reportError(Severity::information, "normalCheckLevelMaxBranches", "Limit analysis of branches. Use --check-level=exhaustive to analyze all branches.");
658658
return Break(Analyzer::Terminate::Bail);
659659
}
660660
Token* endCond = tok->next()->link();

0 commit comments

Comments
 (0)