cppcheck: Suppress incorrectStringBooleanError

This triggers on `assert(condition && "message")`, which we use
fairly frequently.
This commit is contained in:
Fabian Homborg 2018-11-14 11:25:57 +01:00
parent 534f694cee
commit 8343e61795

View file

@ -8,3 +8,5 @@ varFuncNullUB
// the warning being suppressed. In other words this unmatchedSuppression
// warnings are false positives.
unmatchedSuppression
// Suppress this one because it reports assert(condition && "message"), which we use all over the place
incorrectStringBooleanError