Fixing NL.17 per issue #1002 discussion

This commit is contained in:
Andrew Pardoe 2017-07-31 11:29:09 -07:00
parent 9d93e34ea7
commit 82755da679

View File

@ -20310,15 +20310,15 @@ In the context of C++, this style is often called "Stroustrup".
} }
switch (x) { switch (x) {
case 0: case 0:
// ... // ...
break; break;
case amazing: case amazing:
// ... // ...
break; break;
default: default:
// ... // ...
break; break;
} }
if (0 < x) if (0 < x)