| commit | 119ff533e4c37a85782c6ffe121e391d063218bd | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Fri Nov 14 12:31:14 2014 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Fri Nov 14 12:31:14 2014 +0000 |
| tree | f80bfd1bc36b2bdf5b9b09e28ecbfd16678ec48b | |
| parent | cee13a2712c3ac3134791f951157011411e798d8 [diff] |
clang-format: Improve indentation of comments in expressions.
Before:
int i = (a)
// comment
+ b;
return aaaa == bbbb
// comment
? aaaa
: bbbb;
After:
int i = (a)
// comment
+ b;
return aaaa == bbbb
// comment
? aaaa
: bbbb;
llvm-svn: 221985