Compiler Warning (level 3) C4304

'identifier' : simple type cast conversion of no expression

An empty expression was cast to the specified type.

The following example causes this warning:

void func()
{
   int ();   // warning
}