From 485708a74eeac883edc30701892701a5994325bc Mon Sep 17 00:00:00 2001 From: voidbert Date: Tue, 4 Mar 2025 18:16:32 +0000 Subject: [PATCH] Fix cppcheck (hopefully for good) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1844706b..39b5facb 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,8 @@ cppcheck: $(eval CPPCHECK_EXHAUSTIVE_SUPPORT := \ $(shell cppcheck --version | grep -qP '2\.(1[1-8]|1\d{2,}|[2-9]\d+)|[3-9]+\.'; echo $$?)) cppcheck \ - --enable=all --suppress=missingIncludeSystem --suppress=unusedFunction \ + --enable=all \ + --suppress=missingIncludeSystem --suppress=unusedFunction --suppress=unmatchedSuppression \ --library=opengl --library=posix --library=tinyxml2 \ $$([ $(CPPCHECK_EXHAUSTIVE_SUPPORT) -eq 0 ] && echo "--check-level=exhaustive") \ --error-exitcode=1 \