[PATCH] D139541: Fix parameter name in Sema::addInitCapture to ByRef.
Jens Massberg via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 7 09:07:10 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG0a7ca8036058: Fix parameter name in Sema::addInitCapture to ByRef. (authored by massberg).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139541/new/
https://reviews.llvm.org/D139541
Files:
clang/include/clang/Sema/Sema.h
clang/lib/Sema/SemaLambda.cpp
Index: clang/lib/Sema/SemaLambda.cpp
===================================================================
--- clang/lib/Sema/SemaLambda.cpp
+++ clang/lib/Sema/SemaLambda.cpp
@@ -798,12 +798,11 @@
return NewVD;
}
-void Sema::addInitCapture(LambdaScopeInfo *LSI, VarDecl *Var,
- bool isReferenceType) {
+void Sema::addInitCapture(LambdaScopeInfo *LSI, VarDecl *Var, bool ByRef) {
assert(Var->isInitCapture() && "init capture flag should be set");
- LSI->addCapture(Var, /*isBlock*/ false, isReferenceType,
- /*isNested*/ false, Var->getLocation(), SourceLocation(),
- Var->getType(), /*Invalid*/ false);
+ LSI->addCapture(Var, /*isBlock=*/false, ByRef,
+ /*isNested=*/false, Var->getLocation(), SourceLocation(),
+ Var->getType(), /*Invalid=*/false);
}
// Unlike getCurLambda, getCurrentLambdaScopeUnsafe doesn't
Index: clang/include/clang/Sema/Sema.h
===================================================================
--- clang/include/clang/Sema/Sema.h
+++ clang/include/clang/Sema/Sema.h
@@ -7171,8 +7171,7 @@
IdentifierInfo *Id, unsigned InitStyle, Expr *Init, DeclContext *DeclCtx);
/// Add an init-capture to a lambda scope.
- void addInitCapture(sema::LambdaScopeInfo *LSI, VarDecl *Var,
- bool isReferenceType);
+ void addInitCapture(sema::LambdaScopeInfo *LSI, VarDecl *Var, bool ByRef);
/// Note that we have finished the explicit captures for the
/// given lambda.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D139541.529331.patch
Type: text/x-patch
Size: 1525 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230607/12dc0d18/attachment.bin>
More information about the cfe-commits
mailing list