I cannot inline suppress obsoleteFunctiosgets warning from cppcheck. I tried:
// cppcheck-suppress obsoleteFunctionsgets
with no success.
Did any of you experience this warning? Any hint? Thanks.
I cannot inline suppress obsoleteFunctiosgets warning from cppcheck. I tried:
// cppcheck-suppress obsoleteFunctionsgets
with no success.
Did any of you experience this warning? Any hint? Thanks.
Use --inline-suppr on the command line also. Otherwise the comment is ignored.
Personally.. I prefer to use --suppress or --suppressions-list instead of --inline-suppr. I don't like to clutter my code with such comments.