--errorlist : don't show inconclusive messages in the output because those are disabled
This commit is contained in:
parent
a15e25f9fe
commit
5b99f2cef1
|
@ -101,6 +101,8 @@ protected:
|
|||
std::list<const Token *> callstack;
|
||||
if (tok)
|
||||
callstack.push_back(tok);
|
||||
else if (severity == Severity::possibleError || severity == Severity::possibleStyle)
|
||||
return; // don't list inconclusive checks in the --errorlist output
|
||||
reportError(callstack, severity, id, msg);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue