[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2021-05-30 Thread Corentin Jabot via Phabricator via cfe-commits
cor3ntin added a comment. Given the lack of activity, I made another PR for the same feature https://reviews.llvm.org/D103380 Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66481/new/ https://reviews.llvm.org/D66481 __

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2021-05-27 Thread Stéphane Janel via Phabricator via cfe-commits
sjanel added a comment. Hello, Any news on this? GCC and MSVC support them since a while now. Thanks a lot in advance ! Stephane Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66481/new/ https://reviews.llvm.org/D66481 _

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Kris Jusiak via Phabricator via cfe-commits
krzysztof-jusiak added a comment. In D66481#1637530 , @lebedev.ri wrote: > Doesn't this inadvertently allow them in every standard? That seems wrong. Good point, you are right, will fix it and resubmit 👍 Repository: rC Clang CHANGES SINCE LAST ACTIO

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Kris Jusiak via Phabricator via cfe-commits
krzysztof-jusiak added a comment. In D66481#1637525 , @riccibruno wrote: > Can you submit the patch with the full context (ie: git diff -U999) ? Sure, will do it Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66481/ne

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Roman Lebedev via Phabricator via cfe-commits
lebedev.ri added a comment. Doesn't this inadvertently allow them in every standard? That seems wrong. Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66481/new/ https://reviews.llvm.org/D66481 ___ cfe-commits mailing

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Bruno Ricci via Phabricator via cfe-commits
riccibruno added a comment. Can you submit the patch with the full context (ie: git diff -U999) ? Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66481/new/ https://reviews.llvm.org/D66481 ___ cfe-commits mailing l

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Kris Jusiak via Phabricator via cfe-commits
krzysztof-jusiak created this revision. krzysztof-jusiak added a reviewer: rsmith. Herald added a project: clang. Herald added a subscriber: cfe-commits. Problem: - Lambdas in unevaluated context aren't supported in the newest clang yet but are required for our usage of jit. Solution: - Add su