Fix "*" formatting when creating arrays of pointers.
authorDaniel Jasper <djasper@google.com>
Tue, 22 Jan 2013 11:46:26 +0000 (11:46 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 22 Jan 2013 11:46:26 +0000 (11:46 +0000)
commit0b8206029ba79c78022881130ccb69862eaf60f2
treea2d96a6519ed1a68e26ddd3df9251f878774ac84
parent81f0b331dc977f78284cc98071c863565c04c472
Fix "*" formatting when creating arrays of pointers.

Before: A = new int * [10]();
After:  A = new int *[10]();
llvm-svn: 173150
clang/lib/Format/Format.cpp
clang/unittests/Format/FormatTest.cpp