2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[2278] Add temporary suppression for false positives

This commit is contained in:
Jelte Jansen
2012-10-02 09:41:38 +02:00
committed by JINMEI Tatuya
parent 998645aaeb
commit c28be089b9

View File

@@ -11,3 +11,18 @@ missingInclude
//
// // cppcheck-suppress duplicateExpression
// EXPECT_FALSE(small_name < small_name);
// With cppcheck 1.56, there are a number of false positives, which
// All of these should be checked and hopefully removed after upgrading
// cppcheck past 1.56
// eraseDereference: This is a known false positive, which has been
// fixed in the current development version of cppcheck
eraseDereference
// Unused functions: there suddenly are a lot of unused function errors
// We could address those by adding for instance early declarations or
// (unnecessary) header files, but they were all somewhat false positives
// When we upgrade past 1.56, we should re-check this, and perhaps enable
// unused-functions again.
unusedFunction