clang-format: Fix selective indentaiton in nested blocks.
authorDaniel Jasper <djasper@google.com>
Wed, 29 Apr 2015 08:29:26 +0000 (08:29 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 29 Apr 2015 08:29:26 +0000 (08:29 +0000)
commiteb45cb7cf9c56ea1c993dfcc59d9bf28057199e3
tree61bba500ee44cb28b1c4b6357aa7172453d9a99a
parentfda237d09fbe88371e1255acef92fe451201bedc
clang-format: Fix selective indentaiton in nested blocks.

Buggy case:
  someFunction(
      [] {
        // comment
        int i; // invoke formatting here.
      },       // force line break
      aaa);

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