[clang] [Clang] Fix the order of addInstantiatedParameters in LambdaScopeForCallOperatorInstantiationRAII (PR #97215)
Younan Zhang via cfe-commits
cfe-commits at lists.llvm.org
Sat Jul 6 04:37:25 PDT 2024
================
@@ -2379,23 +2379,32 @@ Sema::LambdaScopeForCallOperatorInstantiationRAII::
SemaRef.RebuildLambdaScopeInfo(cast<CXXMethodDecl>(FD));
- FunctionDecl *Pattern = getPatternFunctionDecl(FD);
- if (Pattern) {
- SemaRef.addInstantiatedCapturesToScope(FD, Pattern, Scope, MLTAL);
+ FunctionDecl *FDPattern = getPatternFunctionDecl(FD);
+ if (!FDPattern)
+ return;
----------------
zyn0217 wrote:
nit: Can you revert unrelated changes?
https://github.com/llvm/llvm-project/pull/97215
More information about the cfe-commits
mailing list