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) C4060
switch statement contains no 'case' or 'default' labels
Example
void func( int i )
{
switch( i ); // warning
}