Files
pilotclient/cppcheck_suppressions.conf
Roland Winklmeier ec416c8028 Ignore cppcheck warnings
cppcheck 1.70 introduced a couple of new false positives which
need to be ignored.

refs #505
2015-11-19 21:07:03 +00:00

29 lines
956 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// cppcheck suppression file for swift.
//
// In order to suppress a false positive add a line using one of the following templates:
// [Explaining reason - comments]
// [error id]:[filename2]
// [error id]
// Not sensible qualification errors
// unnecessaryQualification
// no longer needed as discussed in slack
// Optional is a special case, this member should not be initialized
uninitMemberVar:src/blackmisc/optional.h
// False positive caused by missing support for C++11 feature
unusedPrivateFunction:src/blackmisc/tuple_private.h
unusedPrivateFunction:src/blackmisc/blackmiscfreefunctions.h
unusedPrivateFunction:src/blackmisc/compare.h
// cppcheck shouldnt assume operator* is commutative
duplicateExpression:tests/blackmisc/testvectormatrix.cpp
duplicateExpression:tests/blackmisc/testphysicalquantities.cpp
// Ignore any preprocessor directives.
preprocessorErrorDirective
// Ignore noExplicitConstructor for now.
noExplicitConstructor