cppcheck-suppress.lst 487 B

12345678910111213
  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. // Please don't add any suppressions here. We now use inline
  6. // suppressions (in the .cc files) so that we don't have to
  7. // maintain line numbers in this file.
  8. //
  9. // See the cppcheck manual for syntax. It is something like:
  10. //
  11. // // cppcheck-suppress duplicateExpression
  12. // EXPECT_FALSE(small_name < small_name);