On 2/16/14, Manu <turkeyman at gmail.com> wrote:
> requiring an empty 'default: break;' line at the end is annoying and noisy.
Guys, I keep seeing this line being mentioned but you don't actually
have to type "break":
-----
void main()
{
int x;
switch (x)
{
case 1:
break;
// this works fine
default:
}
}
-----