From: Alejandro Colomar Date: Fri, 14 Mar 2025 17:49:48 +0000 (+0100) Subject: etc/cppcheck/cppcheck.suppress: Suppress staticFunction X-Git-Tag: man-pages-6.14~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44930b7b8eacbfff12acd1dcfbb66dd818e35254;p=thirdparty%2Fman-pages.git etc/cppcheck/cppcheck.suppress: Suppress staticFunction For example, in backtrace(3) we don't want to use 'static'. Signed-off-by: Alejandro Colomar --- diff --git a/etc/cppcheck/cppcheck.suppress b/etc/cppcheck/cppcheck.suppress index c55a575bc..7353f4ca5 100644 --- a/etc/cppcheck/cppcheck.suppress +++ b/etc/cppcheck/cppcheck.suppress @@ -6,6 +6,7 @@ knownConditionTrueFalse missingIncludeSystem nullPointerOutOfMemory redundantContinue +staticFunction unassignedVariable uninitvar unknownMacro