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 Error C2177

constant too big

A constant value is too large for the variable type it is assigned. The following sample generates C2177:

void main() {
   int a=18446744073709551616; // C2177
   // try ...
   // int b=18446744073709551615; // ok
}