clang-format: Fix space of arrays of pointers to templated types.
authorDaniel Jasper <djasper@google.com>
Thu, 26 Feb 2015 11:30:50 +0000 (11:30 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 26 Feb 2015 11:30:50 +0000 (11:30 +0000)
commitbeaa322c36e3cc00652bac081f91feaad29b80f3
treeed9f509971097b5b86b0925cd4d2e371c79ce129
parenta36842f8370192c60eda9da6739387ab6f8854b1
clang-format: Fix space of arrays of pointers to templated types.

Before:
  vector<int>(*foo_)[6];

After:
  vector<int> (*foo_)[6];

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