clang-format: Fix formatting of class template declaration.
authorDaniel Jasper <djasper@google.com>
Fri, 14 Feb 2014 18:22:40 +0000 (18:22 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 14 Feb 2014 18:22:40 +0000 (18:22 +0000)
commit3a122c029dfe98de32cb7f1b8f0cbcaa1504eefa
tree18b69804c9e5ffeb73e397ceaa1b47f339a6355f
parentf6830f47b84a2048a78fafa0051ff823de449c18
clang-format: Fix formatting of class template declaration.

Before:
  template <class R, class C>
  struct Aaaaaaaaaaaaaaaaa<R (C::*)(int)
                           const> : Aaaaaaaaaaaaaaaaa<R (C::*)(int)> {};

After:
  template <class R, class C>
  struct Aaaaaaaaaaaaaaaaa<R (C::*)(int) const>
      : Aaaaaaaaaaaaaaaaa<R (C::*)(int)> {};

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