| commit | 10cd581f9503731e454d3b17941a8a69abd0bd3f | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Mon May 06 06:35:44 2013 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Mon May 06 06:35:44 2013 +0000 |
| tree | 8cf02c2acbfbb79282c1da26a15ad57bcc8fbcdd | |
| parent | 4e18ca520071a5c6fe07e53d1e1c5cda9b768dce [diff] |
Don't put a space before ellipsis.
Before: template <class ... Ts> void Foo(Ts ... ts) { Foo(ts ...); }
After: template <class... Ts> void Foo(Ts... ts) { Foo(ts...); }
llvm-svn: 181182