Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
'function' : too few arguments for call
Remarks
The compiler found too few parameters for a call to the function, or an incorrect function declaration.
Example
The following example generates C2198:
// C2198.c
// compile with: /c
void func( int, int );
int main() {
func( 1 ); // C2198 only one actual parameter
func( 1, 1 ); // OK
}