cppclean icon indicating copy to clipboard operation
cppclean copied to clipboard

Function declaration and initialization warning

Open ihhub opened this issue 8 years ago • 0 comments

You have a code:


void f2()
{
    ...
    f();
}

void f()
{
    ...
}

You will have a warning for function f().

ihhub avatar Sep 14 '17 10:09 ihhub