]> granicus.if.org Git - clang/commit
clang-format: Fix incorrect lambda recognition exposed by r203452.
authorDaniel Jasper <djasper@google.com>
Tue, 11 Mar 2014 09:59:36 +0000 (09:59 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 11 Mar 2014 09:59:36 +0000 (09:59 +0000)
commitab058aa6eb834f72e439f4b151775511a4250ae9
tree506837e916baa3dc29e92e1f88d908d47c6a0866
parent2a4e1a3773b96802a693cefb1e1ca84535fb61c3
clang-format: Fix incorrect lambda recognition exposed by r203452.

Before:
  int i = a[a][a] -> f();

After:
  int i = a[a][a]->f();

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