Share via


Compilerwarnung (Ebene 4) C4212

nicht standardmäßige Erweiterung verwendet: Funktionsdeklaration verwendete Auslassungspunkte

Der Funktionsprototyp weist eine variable Anzahl von Argumenten auf. Die Funktionsdefinition ist nicht vorhanden.

Im folgenden Beispiel wird C4212 generiert:

// C4212.c
// compile with: /W4 /Ze /c
void f(int , ...);
void f(int i, int j) {}