File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if(CMAKE_CXX_CPPCHECK)
99 "--addon=y2038"
1010 "--std=c++${CMAKE_CXX_STANDARD} "
1111 "--cppcheck-build-dir=${PROJECT_BINARY_DIR} "
12- "--suppress-xml=${PROJECT_SOURCE_DIR} /CppCheckSuppressions .xml"
12+ "--suppress-xml=${PROJECT_SOURCE_DIR} /cppcheck-suppressions .xml"
1313 "--output-file=${PROJECT_BINARY_DIR} /cppcheck.xml"
1414 "--check-level=normal" )
1515endif ()
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" ?>
2+ <suppressions >
3+ <!-- Exclude Paths -->
4+ <suppress >
5+ <id >*</id >
6+ <fileName >*/build/*</fileName >
7+ </suppress >
8+
9+ <!-- False positive? -->
10+ <suppress >
11+ <id >noExplicitConstructor</id >
12+ </suppress >
13+ </suppressions >
You can’t perform that action at this time.
0 commit comments