Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
'identifier' : name in formal parameter list illegal
Remarks
The identifier caused a syntax error.
This error can be caused by using the old style for the formal parameter list. You must specify the type of formal parameters in the formal parameter list.
Example
The following example generates C2081:
// C2081.c
void func( int i, j ) {} // C2081, no type specified for j
Possible resolution:
// C2081b.c
// compile with: /c
void func( int i, int j ) {}