| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-16 | [clang] Fix printing of lambdas with capture expressions | Ilya Golovenko | |
| Patch by @walrus ! Reviewers: lattner, kadircet Reviewed By: kadircet Subscribers: riccibruno, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D83855 | |||
| 2019-05-05 | [clang] fixing -ast-print for variadic parameter pack in lambda capture | Nicolas Lesser | |
| Summary: currently for: ``` template<typename ... T> void f(T... t) { auto l = [t...]{}; } ``` `clang -ast-print file.cpp` outputs: ``` template <typename ...T> void f(T ...t) { auto l = [t] { } ; } ``` notice that there is not `...` in the capture list of the lambda. this patch fixes this issue. and add test for it. Patch by Tyker Reviewers: rsmith Reviewed By: rsmith Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D61556 llvm-svn: 359980 | |||
