clang-format: Fix formatting of multiple lambdas in initializers.
authorDaniel Jasper <djasper@google.com>
Tue, 14 Jul 2015 11:26:14 +0000 (11:26 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 14 Jul 2015 11:26:14 +0000 (11:26 +0000)
commitea40cee24d8b7aed0ded49c3bab0d5a9791b886b
treeaa81edecf6d8164d7479423186dbc1aab4593648
parent90ff791141aad9165042d3b47115aab4cba0c462
clang-format: Fix formatting of multiple lambdas in initializers.

Before:
  SomeFunction({[&] {
    // comment
  },
                [&] {
                  // comment
                }});

After:
  SomeFunction({[&] {
                  // comment
                },
                [&] {
                  // comment
                }});

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