]> granicus.if.org Git - clang/commit
When breaking at function calls, indent from function name.
authorDaniel Jasper <djasper@google.com>
Fri, 10 May 2013 13:37:16 +0000 (13:37 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 10 May 2013 13:37:16 +0000 (13:37 +0000)
commit04abbb2125272a9930cbaee6530e7754566d8e66
tree5bf4b51d166ec39523a1e664b6880aadb06c7142
parentdaaa468cdd8be3bc4f5861c34d0686d3d7a373fa
When breaking at function calls, indent from function name.

Otherwise (when indenting from the wrapped -> or .), this looks
like a confusing indent.

Before:
aaaaaaa        //
    .aaaaaaa( //
        aaaaaaa);
After:
aaaaaaa        //
    .aaaaaaa( //
         aaaaaaa);

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