]> granicus.if.org Git - clang/commit
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)
commit218b6dfaee321cec558e15d47b68155dd9f35684
treeda34dce327cac94ed8bdb646ab644666d8f04638
parent836b58f564e07e806d3d0b41a193fde0921013c7
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; }

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173252 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
unittests/Format/FormatTest.cpp