Fix formatting of new arrays of pointers.
authorDaniel Jasper <djasper@google.com>
Wed, 13 Mar 2013 07:49:51 +0000 (07:49 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 13 Mar 2013 07:49:51 +0000 (07:49 +0000)
commit97b894849ed1a0f50d1c3f74149617113cb9220a
tree2bf4e10937cd4379da4cabef50245b9e88d28d38
parent91f833a41372d262a9676a6dffe3e8f2f86a0fbf
Fix formatting of new arrays of pointers.

Before:
A = new SomeType * [Length];
A = new SomeType *[Length]();

After:
A = new SomeType *[Length];
A = new SomeType *[Length]();

Small formatting cleanups with clang-format.

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