conditional expression is constant
The controlling expression of an if statement or while loop evaluates to a constant. The code in the body of the if statement or while loop always executes or never executes. The following sample generates C4127:
void main() { if (1 == 1) { // C4127, constant expression } }