clang-format: Support variadic lambda captures.
authorDaniel Jasper <djasper@google.com>
Tue, 10 Jun 2014 06:39:03 +0000 (06:39 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 10 Jun 2014 06:39:03 +0000 (06:39 +0000)
commita84adb5368b30f73d2a413fb859aa93e523456db
tree69a845a41716b91b9686af560ccadf6c845990ff
parentc5e47d7fb3f3283ecb9712fc42fb7ad62dcb63bd
clang-format: Support variadic lambda captures.

Before:
  return [ i, args... ]{};

After:
  return [i, args...] {};

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