clang-format: Don't wrap after short first segments of builder calls.
authorDaniel Jasper <djasper@google.com>
Fri, 24 Apr 2015 10:08:09 +0000 (10:08 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 24 Apr 2015 10:08:09 +0000 (10:08 +0000)
commit775954be1ee9bae06c5629d861d1756b23c3589c
tree9570b9ecba2771b3a35d7796ed1c97c2fcba043c
parent87d935dd0917f5460dfc737b143c3e59e7ac64a6
clang-format: Don't wrap after short first segments of builder calls.

Before:
  a()
      .aaaaa()
      .aaaaa()
      .aaaaa();

After:
  a().aaaaa()
      .aaaaa()
      .aaaaa();

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