Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
expression before comma evaluates to a function which is missing an 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 C4545:
// C4545.cpp
// compile with: /W1
#pragma warning (default : 4545)
void f() { }
int main()
{
*(&f), 10; // C4545
// try the following line instead
// (*(&f))(), 10;
}