Cppcheck: allow that 'toomanyconfigs' are suppressed. show these messages by default even though 'information' hasn't been enabled.
This commit is contained in:
parent
27b29e5b8e
commit
939504af3c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue