Cppcheck: allow that 'toomanyconfigs' are suppressed. show these messages by default even though 'information' hasn't been enabled.

This commit is contained in:
Daniel Marjamäki 2011-08-20 11:20:25 +02:00
parent 27b29e5b8e
commit 939504af3c
1 changed files with 20 additions and 17 deletions

View File

@ -217,8 +217,7 @@ unsigned int CppCheck::processFile()
// was used.
if (!_settings._force && checkCount > 11)
{
if (_settings.isEnabled("information"))
{
const std::string fixedpath = Path::toNativeSeparators(_filename);
ErrorLogger::ErrorMessage::FileLocation location;
location.setfile(fixedpath);
@ -234,8 +233,12 @@ unsigned int CppCheck::processFile()
msg,
"toomanyconfigs",
false);
_errorLogger.reportErr(errmsg);
if (!_settings.nomsg.isSuppressedLocal(errmsg._id, fixedpath, location.line))
{
reportErr(errmsg);
}
break;
}