Compiler Warning (level 1) C4550 (Windows CE 5.0)

Send Feedback

expression evaluates to a function which is missing an argument list

A dereferenced pointer to a function is missing an argument list.

The following example shows how this message might occur.

bool f()
{
return true;
}

typedef bool (*pf_t)();

int main()
{
pf_t pf = f;
if (*pf) {}// Error
return 0;

}

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.