Fix regression in formatting pointer types.
authorDaniel Jasper <djasper@google.com>
Wed, 23 Jan 2013 11:15:14 +0000 (11:15 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 23 Jan 2013 11:15:14 +0000 (11:15 +0000)
commitb9c0908f7c7770c38e51bd8b023b5792a3b60c56
treef96bce00e57ab16edfced146e58edca04c8626ac
parent7d2e4c038989d25fca98458872acf06e01416a7f
Fix regression in formatting pointer types.

We will need a more principled solution, but we should not leave this
unfixed until we come up with one.

Before: void f() { int * a; }
After:  void f() { int *a; }
llvm-svn: 173252
clang/lib/Format/Format.cpp
clang/unittests/Format/FormatTest.cpp