Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
expression before comma has no effect; expected expression with side-effect
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 C4548:
// C4548.cpp
// compile with: /W1
#pragma warning (default : 4548)
int main()
{
int i = 0, k = 0;
if ( i, k ) // C4548
// try the following line instead
// if ( i = 0, k )
i++;
}