cppcheck-suppress.lst 782 B

123456789101112131415
  1. // On some systems cppcheck produces false alarms about 'missing includes'.
  2. // the following two will suppress, depending on the cppcheck version
  3. debug
  4. missingInclude
  5. // This is a template, and should be excluded from the check
  6. unreadVariable:src/lib/dns/rdata/template.cc:60
  7. // These three trigger warnings due to the incomplete implementation. This is
  8. // our problem, but we need to suppress the warnings for now.
  9. functionConst:src/lib/cache/resolver_cache.h
  10. functionConst:src/lib/cache/message_cache.h
  11. functionConst:src/lib/cache/rrset_cache.h
  12. // Intentional self assignment tests. Suppress warning about them.
  13. selfAssignment:src/lib/dns/tests/name_unittest.cc:293
  14. selfAssignment:src/lib/dns/tests/rdata_unittest.cc:228
  15. selfAssignment:src/lib/dns/tests/tsigkey_unittest.cc:137