הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
function call before comma missing argument list
Remarks
The compiler detected an ill-formed comma expression.
This warning is off by default. For more information, see Compiler Warnings That Are Off by Default.
Example
The following example generates C4546:
// C4546.cpp
// compile with: /W1
#pragma warning (default : 4546)
void f(int i) {
i++;
}
int main() {
int i = 0, k = 0;
if ( f, k ) // C4546
// try the following line instead
// if ( f(i), k )
i++;
}