daca@home; show unhandled chars diagnostics

This commit is contained in:
Daniel Marjamäki 2021-05-13 13:44:32 +02:00
parent 22ab9ccd7f
commit fca7a270bf
1 changed files with 3 additions and 3 deletions

View File

@ -2767,7 +2767,7 @@ bool Tokenizer::simplifyTokens1(const std::string &configuration)
}
// Warn about unhandled character literals
if (mSettings->severity.isEnabled(Severity::information)) {
if (mSettings->severity.isEnabled(Severity::debug) || mSettings->daca) {
for (const Token *tok = tokens(); tok; tok = tok->next()) {
if (tok->tokType() == Token::eChar && tok->values().empty()) {
try {
@ -9551,8 +9551,8 @@ void Tokenizer::unhandledCharLiteral(const Token *tok, const std::string& msg) c
}
reportError(tok,
Severity::information,
"cppcheckUnhandledChar",
Severity::debug,
"debugUnhandledChar",
"Character literal" + s + " is not handled. " + msg);
}