Avoid confusing identations for multi-parameter functions.
authorDaniel Jasper <djasper@google.com>
Mon, 28 Jan 2013 07:35:34 +0000 (07:35 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 28 Jan 2013 07:35:34 +0000 (07:35 +0000)
commit7b5773e9c771f5e922675c241570dc6ea2853abf
tree067a9dcf8231a8a908d3a0b3c5a282705f1c3e1b
parentf0705254d15855569dd48972d59d563b4a61cf06
Avoid confusing identations for multi-parameter functions.

Before:
aaaaaaaa(aaaaaaaaa(
    aaaaaaaaaa(),
         aaaaaaaaa);

After:
aaaaaaaa(aaaaaaaaa(
             aaaaaaaaaa(),
         aaaaaaaaa);

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