[clang] [Clang] Bugfixes and improved support for `AttributedType`s in lambdas (PR #85325)

via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 7 10:38:42 PDT 2024


================
@@ -13830,61 +13820,27 @@ TreeTransform<Derived>::TransformLambdaExpr(LambdaExpr *E) {
     getSema().AddTemplateParametersToLambdaCallOperator(NewCallOperator, Class,
                                                         TPL);
 
-  // Transform the type of the original lambda's call operator.
-  // The transformation MUST be done in the CurrentInstantiationScope since
-  // it introduces a mapping of the original to the newly created
-  // transformed parameters.
----------------
Sirraide wrote:

I think we could yeah, but it should probably be moved somewhere else (probably into `TemplateInstantiator::TransformFunctionProtoType`) because this code here doesn’t have to care about that anymore after this refactor.

https://github.com/llvm/llvm-project/pull/85325


More information about the cfe-commits mailing list