ValueFlow: improved `checkLevelNormal` message (#5584)

This commit is contained in:
Oliver Stöneberg 2023-11-03 21:05:56 +01:00 committed by GitHub
parent 989d276dde
commit 8b0916c319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -9353,8 +9353,8 @@ struct ValueFlowPassRunner {
const ErrorMessage errmsg(callstack,
state.tokenlist.getSourceFilePath(),
Severity::information,
"ValueFlow analysis is limited in " + functionName +
". Use --check-level=exhaustive if full analysis is wanted.",
"Limiting ValueFlow analysis in function '" + functionName + "' since it is too complex. "
"Please specify --check-level=exhaustive to perform full analysis.",
"checkLevelNormal",
Certainty::normal);
state.errorLogger->reportErr(errmsg);