From 0b6db67de20b88027d485c8da948fb5ca3e546cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Tue, 18 Oct 2016 22:20:06 +0200 Subject: [PATCH] checkcfg: add missing inline suppression for ignoredReturnValue of abs() --- test/cfg/std.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cfg/std.c b/test/cfg/std.c index f01c4afc0..300674530 100644 --- a/test/cfg/std.c +++ b/test/cfg/std.c @@ -3579,6 +3579,7 @@ void ignoredReturnValue_abs(int i) // cppcheck-suppress ignoredReturnValue abs(i); // cppcheck-suppress constStatement + // cppcheck-suppress ignoredReturnValue abs(-100); }