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 3) C4063

case 'identifier' is not a valid value for switch of enum 'enumeration'

Example

enum E { a, b };
void func ( E e )
{
   switch(e)
   {
   case a:
   case b:
   case 7:      // invalid switch value
      break;    // no default label
   }
}