| commit | 16b3562f00e8e55e34f6f4244b2ffddacce717df | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Tue Feb 26 13:18:08 2013 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Tue Feb 26 13:18:08 2013 +0000 |
| tree | 96514d4d361943ad1d63e34bcc69270db257b023 | |
| parent | fb5e241183e67c94159448e7a8113bef2c381ffe [diff] |
In range-based for-loops, prefer splitting after ":".
Before:
for (const aaaaaaaaaaaaaaaaaaaaa &
aaaaaaaaa : aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa) {}
After:
for (const aaaaaaaaaaaaaaaaaaaaa &aaaaaaaaa :
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa) {}
llvm-svn: 176087