]> granicus.if.org Git - clang/commit
clang-format: Fix bug in style option AlwaysBreakTemplateDeclarations.
authorDaniel Jasper <djasper@google.com>
Sat, 14 Sep 2013 08:13:22 +0000 (08:13 +0000)
committerDaniel Jasper <djasper@google.com>
Sat, 14 Sep 2013 08:13:22 +0000 (08:13 +0000)
commitd3d9e0f4a107e97b493e1d4c7c5b5dc15e7e137a
treef2beb2715ddb3e0959e0ad19e146cdb4f1b6064f
parentabcfa61f513e499fe3f2f44df9cb48e133fc4fc0
clang-format: Fix bug in style option AlwaysBreakTemplateDeclarations.

Before:
  template <template <typename>
            class Fooooooo, template <typename>
            class Baaaaaaar>
  struct C {};

After:
  template <template <typename> class Fooooooo,
            template <typename> class Baaaaaaar>
  struct C {};

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