]> granicus.if.org Git - clang/commit
clang-format: Break before trailing annotations.
authorDaniel Jasper <djasper@google.com>
Thu, 11 Jul 2013 21:02:56 +0000 (21:02 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 11 Jul 2013 21:02:56 +0000 (21:02 +0000)
commit20a0f8cff96505abb65233a2eaf3af3cd8536cd2
treecb40b3546dc2f2ce4fbd7c5923f12a84be924861
parentfaec47bcbadf462b3ac82618dcfca6ae3b8ce5d9
clang-format: Break before trailing annotations.

(if they are not function-like).

Before:
  SomeFunction(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa)
      OVERRIDE;

After:
  SomeFunction(aaaaaaaaaaaaaaaaaaaaaa,
               aaaaaaaaaaaaaaaaaaaaaaaa) OVERRIDE;

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