Compiler Warning (level 3) C4060

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

The following example causes this warning:

void func( int i )
{
   switch( i );   // warning
}