clang-format: Don't break before a case's colon.
Before (with just the right line length: switch (a) { case some_namespace::some_constant : return; } After: switch (a) { case some_namespace:: some_constant: return; } llvm-svn: 209725
Loading
Please register or sign in to comment