]> granicus.if.org Git - clang/commit
clang-format: Fix indentation in multi-line placement new.
authorDaniel Jasper <djasper@google.com>
Wed, 6 Aug 2014 13:14:58 +0000 (13:14 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 6 Aug 2014 13:14:58 +0000 (13:14 +0000)
commit5b7401235ec2cb54577367b46dc7974e44b76761
tree2ba5a9256d6350f7049e418d0021a57bd7bf2c65
parent2282b76a957aaaf72f38a81975b6dffd8633eac8
clang-format: Fix indentation in multi-line placement new.

Before:
  auto aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa =
      new (aaaaaaaaaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaa))
      typename aaaaaaaaaaaaaaaaaaaaaaaa();

After:
  auto aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa =
      new (aaaaaaaaaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaa))
          typename aaaaaaaaaaaaaaaaaaaaaaaa();

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