]> granicus.if.org Git - clang/commit
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)
commitd2e036d8284a75a15ee5a131a0ad65bb19de4960
treea77d396c9ea244e6ea4587c89f73499bfc859120
parent00ad5635bb0511b53b1052a1b8795d055cd179e1
clang-format: Fix space of arrays of pointers to templated types.

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

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

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