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

switch statement contains 'default' but no 'case' labels

The switch statement specifies a default case only. This is equivalent to a sequence of statements.

Example

void func(int i)
{
   switch(i)
   {
   default:
      func(8);
   }                // warning 4065
}