Mentions légales du service

Skip to content
Snippets Groups Projects
Commit bb02b055 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

cppcheck: fix suppress missingIncludeSystem

parent cea5a737
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ git ls-files | grep "\.[ch]$" > filelist.txt
export UNDEFINITIONS="-UWIN32 -UWIN64 -U_MSC_EXTENSIONS -U_MSC_VER -U__SUNPRO_C -U__SUNPRO_CC -U__sun -Usun -U__cplusplus"
# run cppcheck analysis
cppcheck -v -f --project=build/compile_commands.json --language=c --platform=unix64 --enable=all --xml --xml-version=2 --suppress=missingInclude ${UNDEFINITIONS} ${DEFINITIONS} 2> hqr-cppcheck.xml
cppcheck -v -f --project=build/compile_commands.json --language=c --platform=unix64 --enable=all --xml --xml-version=2 --suppress=missingIncludeSystem ${UNDEFINITIONS} ${DEFINITIONS} 2> hqr-cppcheck.xml
# run rats analysis
rats -w 3 --xml `cat filelist.txt` > hqr-rats.xml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment