| commit | e9f5357f495dabedcc84bd956da7c357d8547fd1 | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Thu Apr 30 09:24:17 2015 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Thu Apr 30 09:24:17 2015 +0000 |
| tree | a55f776bb37a175175862e7c352159499eb5662e | |
| parent | 90b059d555e7e3a910dad247a342babb537d5cd7 [diff] |
clang-format: Don't merge short else blocks.
Before (with the appropriate flags settings):
if (a) {
f();
} else { g(); }
Before (with other appropriate flags settings):
if (a) { f(); } else {
g();
}
After:
if (a) {
f();
} else {
g();
}
llvm-svn: 236217