clang-format: When putting */& next to types, also wrap before them.
authorDaniel Jasper <djasper@google.com>
Thu, 12 Mar 2015 15:04:53 +0000 (15:04 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 12 Mar 2015 15:04:53 +0000 (15:04 +0000)
commitb754a747bec0ca0db0cc3fb376f08d883abf72d0
treef51d8f2e95f80da31c678044c2f12304e0adb54b
parentd5d496a55db9081f3dd89c73af55b3d4eb4f69e9
clang-format: When putting */& next to types, also wrap before them.

Before:
  LoooooooooooongType *
      loooooooooooongVariable;

After:
  LoooooooooooongType
      *loooooooooooongVariable;

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