Fix formatting for allocation of new pointer variables.
authorDaniel Jasper <djasper@google.com>
Fri, 5 Jul 2013 13:30:40 +0000 (13:30 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 5 Jul 2013 13:30:40 +0000 (13:30 +0000)
commit6f9c8d2148b2a031561c93e7dc09268c45a4f746
treee6d273643a03a2e97128134518168ccfd36c9e60
parent23943229f6e951f674490641f7441643862b358f
Fix formatting for allocation of new pointer variables.

Before:
T **t = new T * ;
T **q = new T * ();

After:
T **t = new T *;
T **q = new T *();

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