第一个参数列表比第二个长
注解
使用更短的参数列表第再次声明了 C 函数。 C 不支持重载函数。
Example
以下示例生成 C2190:
// C2190.c
// compile with: /Za /c
void func( int, float );
void func( int ); // C2190, different parameter list
void func2( int ); // OK
第一个参数列表比第二个长
使用更短的参数列表第再次声明了 C 函数。 C 不支持重载函数。
以下示例生成 C2190:
// C2190.c
// compile with: /Za /c
void func( int, float );
void func( int ); // C2190, different parameter list
void func2( int ); // OK