Don't add an extra space before ellipsis after pointers.
authorDaniel Jasper <djasper@google.com>
Mon, 1 Jul 2013 09:47:25 +0000 (09:47 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 1 Jul 2013 09:47:25 +0000 (09:47 +0000)
commitbafa6b711a12ccc96a0d8b6c3a33413814f08510
tree9271739fa18fb82716ab3b097ad01068af4741d7
parent022612db050e18d18c8e6febad56b3aa22e8a6e6
Don't add an extra space before ellipsis after pointers.

Before (for styles where the pointer binds to the type):
template <class... Ts> void Foo(Ts... ts) {}
template <class... Ts> void Foo(Ts* ... ts) {}
After:
template <class... Ts> void Foo(Ts... ts) {}
template <class... Ts> void Foo(Ts*... ts) {}

llvm-svn: 185321
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp