]> granicus.if.org Git - clang/commit
clang-format: Improve line breaks at function calls.
authorDaniel Jasper <djasper@google.com>
Fri, 12 Sep 2014 16:35:28 +0000 (16:35 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 12 Sep 2014 16:35:28 +0000 (16:35 +0000)
commit18920bfdd009572c8be488e13c16262ca7c5a4f9
treece4bab9d4fc8966f51c40221fea41ed1a0728201
parent4b4db348b6ddca89e10f7a1f681dd7cd15d66986
clang-format: Improve line breaks at function calls.

Before:
  EXPECT_CALL(SomeObject, SomeFunction(Parameter)).Times(2).WillRepeatedly(
      Return(SomeValue));

After:
  EXPECT_CALL(SomeObject, SomeFunction(Parameter))
      .Times(2)
      .WillRepeatedly(Return(SomeValue));

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