diff options
author | Mukund Sivaraman <muks@isc.org> | 2012-03-30 12:33:30 +0200 |
---|---|---|
committer | Mukund Sivaraman <muks@isc.org> | 2012-03-30 12:47:55 +0200 |
commit | c1a0b11d84b6953c0c53bfe26d7c1a946bb772fb (patch) | |
tree | 41da4b09d53b37cf19384277348cf71fffd4616d /Makefile.am | |
parent | [1627] Add comment about use of try-catch blocks (diff) | |
download | kea-c1a0b11d84b6953c0c53bfe26d7c1a946bb772fb.tar.xz kea-c1a0b11d84b6953c0c53bfe26d7c1a946bb772fb.zip |
[master] Move cppcheck suppressions to the source files (inline)
This fixes a cppcheck regression introduced in commit
48cfa00bb988cfeebab4e6ac7ae440cd685137e5 (I think), which caused line
numbers to change.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index cc91a564eb..55a28aab94 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,7 +79,7 @@ report-coverage: report-cpp-coverage report-python-coverage # for static C++ check using cppcheck (when available) cppcheck: - cppcheck --enable=all --suppressions src/cppcheck-suppress.lst \ + cppcheck --enable=all --suppressions src/cppcheck-suppress.lst --inline-suppr \ --quiet --error-exitcode=1 \ --template '{file}:{line}: check_fail: {message} ({severity},{id})' \ src |