clang-format: Fix bad wrapping after "*" introduced in r232044.
authorDaniel Jasper <djasper@google.com>
Wed, 18 Mar 2015 14:20:13 +0000 (14:20 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 18 Mar 2015 14:20:13 +0000 (14:20 +0000)
commit1130981907705ddc9ed56093cf972df8f9e0bdfd
tree67ec176d9487057091bef0b428a01f03df7dbe65
parentebc5609087d99cbe88628ec66268c68ef3acb92d
clang-format: Fix bad wrapping after "*" introduced in r232044.

Before:
  void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaaaa*
                                              const aaaaaaaaaaaa) {}

After:
  void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(
      aaaaaaaaaaaaaaaaaaaaaaaaa* const aaaaaaaaaaaa) {}

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