Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
first parameter list longer than second
Remarks
A C function was declared a second time with a shorter parameter list. C does not support overloaded functions.
Example
The following example generates C2190:
// C2190.c
// compile with: /Za /c
void func( int, float );
void func( int ); // C2190, different parameter list
void func2( int ); // OK