Improve line breaking before multi-line strings.
authorDaniel Jasper <djasper@google.com>
Wed, 17 Jul 2013 15:38:19 +0000 (15:38 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 17 Jul 2013 15:38:19 +0000 (15:38 +0000)
commitc834c70986b01f5086d72bc5c5e564d7d0ebbc74
treebe37cc901d894de56cdbaade23f87fee5e26c352
parent21b3da0f939c699e671dd8df460fce7079361123
Improve line breaking before multi-line strings.

The AlwaysBreakBeforeMultilineStrings rule does not really make sense
if it does not a column gain.

Before (in Google style):
  f(
      "aaaa"
      "bbbb");

After:
  f("aaaa"
    "bbbb");

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