'operator' : expression is always false
An unsigned variable was used in a comparison operation with zero.
C4296 is off by default. The following sample generates C4296:
#pragma warning(1 : 4296) void main() { unsigned int u = 9; if (u < 0) // C4296 u++; if (u >= 0) // C4296 u++; }