clang-format: Properly reset BreakBeforeParameter when wrapping
authorDaniel Jasper <djasper@google.com>
Wed, 3 Jun 2015 09:26:03 +0000 (09:26 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 3 Jun 2015 09:26:03 +0000 (09:26 +0000)
commit5962fa80c2c41f5d467ff362f9a1db3abf243539
treed4beb6157b9dece2d7a322eaa7da18e6130b56ac
parent4432d87578135648f35401c52b1462f4ebe24cd8
clang-format: Properly reset BreakBeforeParameter when wrapping
operators to the new line.

Before:
  LOG_IF(aaa == //
         bbb)
      << a
      << b;

After:
  LOG_IF(aaa == //
         bbb)
      << a << b;

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