From 7242e661efe275406ad692802b9cada42a567be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 18 Oct 2016 22:35:54 +0200 Subject: [PATCH] checkcfg: add missing inline suppression for ignoredReturnValue of abs() --- test/cfg/std.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cfg/std.cpp b/test/cfg/std.cpp index 2e56b09f2..89f2c33b1 100644 --- a/test/cfg/std.cpp +++ b/test/cfg/std.cpp @@ -3039,6 +3039,7 @@ void ignoredReturnValue_abs(int i) // cppcheck-suppress ignoredReturnValue std::abs(i); // cppcheck-suppress constStatement + // cppcheck-suppress ignoredReturnValue std::abs(-199); }