]> granicus.if.org Git - clang/commit
clang-format: Fix incorrect indentation.
authorDaniel Jasper <djasper@google.com>
Fri, 30 Aug 2013 08:29:25 +0000 (08:29 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 30 Aug 2013 08:29:25 +0000 (08:29 +0000)
commit13d2aa5c8fbb62abf8531bc6e1b7aa89c60fba4f
tree86b30a7a310031077d08c36a4f9897131c76e3be
parent290824530199d9d3728edfbaeb5ccedb798d4498
clang-format: Fix incorrect indentation.

Before:
aaaaaaaaaa(bbbbbbbbbbbbbbbbbbbbbbbbb.ccccccccccccccccc(
               dddddddddddddddddddddddddddddd));
aaaaaaaaaaa(bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb(
    dddddddddddddddddddddddddddddd));

After:
aaaaaaaaaaa(bbbbbbbbbbbbbbbbbbbbbbbbb.ccccccccccccccccc(
    dddddddddddddddddddddddddddddd));
aaaaaaaaaaa(bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb(
    dddddddddddddddddddddddddddddd));

This was overlooked when interducing the new builder-type call
detection in r189337. Also, some minor reorganization of a test.

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