I am trying to suppress
static char buffer[SCH_BUFFER_LEN]; // cppcheck-suppress "misra-c2012-8.9"
This does not seem to work. I am using CppCheck 2.7 and call it using.
cppcheck --addon=misra.json --inline-suppr -itest/ -Iinclude/utilities -Iinclude/ src/ --enable=all --suppressions-list=suppressions.txt --suppress=missingInclude . --inconclusive --xml graphal 2> cppcheck-result.xml
Am I missing anything?
can you try:
static char buffer[SCH_BUFFER_LEN]; // cppcheck-suppress misra-c2012-8.9
Log in to post a comment.
I am trying to suppress
This does not seem to work. I am using CppCheck 2.7 and call it using.
Am I missing anything?
can you try: