| commit | 6d9b88dd997c3188446c6f63c852676bc0e6e432 | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Wed May 06 07:17:22 2015 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Wed May 06 07:17:22 2015 +0000 |
| tree | 6884dabf90d6bd682d74d2c97f1768ab4ff15553 | |
| parent | 26f165b04e803756b870f59fd5f1ab0cd89d0ae0 [diff] |
clang-format: Fix bug in multiline comment wrapping. Splitting: /** * multiline block comment * */ Before: /** * multiline block *comment * */ After: /** * multiline block * comment * */ The reason was that the empty line inside the comment (with just the "*") was confusing the comment breaking logic. llvm-svn: 236573