checkcfg: add missing inline suppression for ignoredReturnValue of abs()

This commit is contained in:
Matthias Krüger 2016-10-18 22:20:06 +02:00
parent efa3aba32a
commit 0b6db67de2
1 changed files with 1 additions and 0 deletions

View File

@ -3579,6 +3579,7 @@ void ignoredReturnValue_abs(int i)
// cppcheck-suppress ignoredReturnValue
abs(i);
// cppcheck-suppress constStatement
// cppcheck-suppress ignoredReturnValue
abs(-100);
}