mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-16 19:16:05 +00:00

Before: template <class ... Ts> void Foo(Ts ... ts) { Foo(ts ...); } After: template <class... Ts> void Foo(Ts... ts) { Foo(ts...); } llvm-svn: 181182