Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Compiler Warning (level 1) C4551

function call missing argument list

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

Example

// C4551.cpp
// compile with: /W1
void function1()
{
}

main()
{
   function1;   // C4551
   return 0;
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.