wy163 - 2025-03-14

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!