| commit | 2d0cd4978737bdde886d70cb82d5ce8fb385bfa2 | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Sun Oct 20 16:56:16 2013 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Sun Oct 20 16:56:16 2013 +0000 |
| tree | caf5392d9a6f5e55a776af140211503c7f76868e | |
| parent | d489dd342bfdc2481a62633c8f8d66d6e2339dcb [diff] |
clang-format: Support case ranges.
Before (note the missing space before "..." which can lead to compile
errors):
switch (x) {
case 'A'... 'Z':
case 1... 5:
break;
}
After:
switch (x) {
case 'A' ... 'Z':
case 1 ... 5:
break;
}
llvm-svn: 193050