This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Compiler Error C2081
'identifier' : name in formal parameter list illegal
The identifier caused a syntax error.
Possible cause
- Using the old style for the formal parameter list. You must specify the type of formal parameters in the formal parameter list.
The following sample generates C2081:
void func( int i, j ) // error, no type specified for j
{
}