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) C4178

case constant 'constant' too big for the type of the switch expression

A case constant in a switch expression does not fit in the type to which it is assigned.

Example

void main()
{ 
    int i;  // maximum size of unsigned long int is 4294967295
    switch( i ) 
    {
        case 4294967295:   // OK
            break;
        case 4294967296:   // warning
            break;
    }
 }