clang-format: Properly set the BlockKind for more blocks.
authorDaniel Jasper <djasper@google.com>
Mon, 21 Dec 2015 18:31:15 +0000 (18:31 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 21 Dec 2015 18:31:15 +0000 (18:31 +0000)
commiteb65e912aaa0cb0bb7adf138495f3e25fb2ecdf6
tree146c6e7dde2bfebec447e5008736aed6662a17e9
parent3e88a3200ce111ee6491fedd5a48c5308afc3cad
clang-format: Properly set the BlockKind for more blocks.

Before:
  void f() { struct Dummy { };
    f();
  }

After:
  void f() {
    struct Dummy {};
    f();
  }

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