clang-format: Improve formatting of functions with multiple trailing tokens.
authorDaniel Jasper <djasper@google.com>
Fri, 27 Sep 2013 08:29:16 +0000 (08:29 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 27 Sep 2013 08:29:16 +0000 (08:29 +0000)
commitf3167903b84fc9f7f6350b758c6ab9f4a7b12874
treea6b2eff964c6d029a19eeed951fcdbad922f69d3
parent68c880b5f9f95c1225338905ae63a5487b118f15
clang-format: Improve formatting of functions with multiple trailing tokens.

Before:
  void SomeFunction(aaaaaaaaaaaaaaaaaaaaaaaaaa,
                    aaaaaaaaaaaaaaaaaaaaaaaaaa) override
  final;

After:
  void SomeFunction(aaaaaaaaaaaaaaaaaaaaaaaaaa,
                    aaaaaaaaaaaaaaaaaaaaaaaaaa) override final;

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