Compiler Error C2081 (Windows CE 5.0)

Send Feedback

'identifier' : name in formal parameter list illegal

The identifier caused a syntax error.

The following list shows possible causes for this error.

  • Using the old style for the formal parameter list. You must specify the type of formal parameters in the formal parameter list.

The following example shows ways this error might occur.

void func( int i, j )  // error, no type specified for j
{
}

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.