clang-format: Quickfix for braced init lists detected as lambdas.
authorDaniel Jasper <djasper@google.com>
Thu, 5 Sep 2013 11:49:39 +0000 (11:49 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 5 Sep 2013 11:49:39 +0000 (11:49 +0000)
commitbf02b2c186c0d317849379711a0d7b08ff933d23
treeaa5a10cc9d54b3be9e14780328df19cb5f487169
parent5e0b2085c8be40eb9e1c6b7fe3e9651edc53c906
clang-format: Quickfix for braced init lists detected as lambdas.

Before:
  constexpr char hello [] { "hello" };

After:
  constexpr char hello[]{ "hello" };

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