mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
// 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
|
||
unusedPrivateFunction:src/blackmisc/lockfree.h
|
||
|
||
unusedPrivateFunction:src/blackmisc/dictionary.h
|
||
|
||
// cppcheck shouldn’t assume operator* is commutative
|
||
duplicateExpression:tests/blackmisc/testvectormatrix.cpp
|
||
duplicateExpression:tests/blackmisc/testphysicalquantities.cpp
|
||
|
||
// Ignore intentional hiding
|
||
variableHidingEnum:src/blackmisc/statusmessage.h
|
||
|
||
// Ignore any preprocessor directives.
|
||
preprocessorErrorDirective
|
||
|
||
// Ignore noExplicitConstructor for now.
|
||
noExplicitConstructor
|
||
|
||
// Ignore style issues in g2clib
|
||
variableScope:src/plugins/weatherdata/gfs/g2clib/*.c
|