I kow I can suppress diagnostic messages with
// cppcheck-suppress uninitvar
But how can I do it for C89 block comments? I did not get
/* // cppcheck-suppress uninitvar */
working.
this should work:
/* cppcheck-suppress uninitvar */
Log in to post a comment.
I kow I can suppress diagnostic messages with
But how can I do it for C89 block comments? I did not get
working.
Last edit: tbeu 2024-02-25
this should work: