Compiler Warning (level 1) C4551

function call missing argument list

A function call in Visual C++ must include the open and close parentheses after the function name even if the function takes no parameters.

The following example will generate a C4551 warning:

void function1(){
   
}

main()
{   
   function1;
   return 0;
}