Ignore cppcheck warnings

cppcheck 1.70 introduced a couple of new false positives which
need to be ignored.

refs #505
This commit is contained in:
Roland Winklmeier
2015-11-10 12:55:35 +01:00
committed by Mathew Sutcliffe
parent 6474261c3c
commit ec416c8028

View File

@@ -14,6 +14,8 @@ 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
// cppcheck shouldnt assume operator* is commutative
duplicateExpression:tests/blackmisc/testvectormatrix.cpp
@@ -21,3 +23,6 @@ duplicateExpression:tests/blackmisc/testphysicalquantities.cpp
// Ignore any preprocessor directives.
preprocessorErrorDirective
// Ignore noExplicitConstructor for now.
noExplicitConstructor