NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4296

'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++;
}