Skip to content
Snippets Groups Projects
Commit 18b55a0e authored by Dimitrios Stoupis's avatar Dimitrios Stoupis Committed by kongr45gpen
Browse files

Fix cppcheck errors

parent 04bdac69
No related branches found
No related tags found
No related merge requests found
...@@ -34,5 +34,4 @@ python3 ci/summarizer.py --report ci/report.msr --suppress 3.1 5.1 5.2 5.3 12.3 ...@@ -34,5 +34,4 @@ python3 ci/summarizer.py --report ci/report.msr --suppress 3.1 5.1 5.2 5.3 12.3
# clean up old files # clean up old files
echo -e "\u001b[34;1mRemoving dump files...\u001b[0m" echo -e "\u001b[34;1mRemoving dump files...\u001b[0m"
echo > ci/report.msr # clear the report file echo > ci/report.msr # clear the report file
find inc/ src/ -type f -name "*.dump" | xargs rm find inc/ src/ -type f -name "*.dump" | xargs rm -rf
...@@ -12,4 +12,5 @@ echo -e "\u001b[34;1mStarting cppcheck...\u001b[0m" ...@@ -12,4 +12,5 @@ echo -e "\u001b[34;1mStarting cppcheck...\u001b[0m"
echo -e "\u001b[34;1mRunning cppcheck with default checklist...\u001b[0m" echo -e "\u001b[34;1mRunning cppcheck with default checklist...\u001b[0m"
cd "$(dirname "$0")/.." cd "$(dirname "$0")/.."
cppcheck --enable=all --error-exitcode=1 -I inc src test cppcheck --enable=all --suppress=unusedFunction --suppress=noExplicitConstructor \
--inline-suppr --error-exitcode=1 -I inc src test
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