Hi, seems the cppcheck will not show any message for function cross call. For example,
void f() { ff(); } void ff() { f(); } int main() { ff(); return 1; }
there will not be any warning. Is it a case that need to be considered? How do you think? Thanks!
Log in to post a comment.
Hi, seems the cppcheck will not show any message for function cross call.
For example,
there will not be any warning. Is it a case that need to be considered? How do you think?
Thanks!