forked from OSchip/llvm-project
[NFC]: Removed an implicit capture argument from lambda.
This commit is contained in:
parent
eeeb18cd07
commit
52ea308f70
|
@ -1608,7 +1608,7 @@ llvm::DISubprogram *CGDebugInfo::CreateCXXMemberFunction(
|
|||
|
||||
// We're checking for deleted C++ special member functions
|
||||
// [Ctors,Dtors, Copy/Move]
|
||||
auto checkAttrDeleted = [&SPFlags](const auto *Method) {
|
||||
auto checkAttrDeleted = [&](const auto *Method) {
|
||||
if (Method->getCanonicalDecl()->isDeleted())
|
||||
SPFlags |= llvm::DISubprogram::SPFlagDeleted;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue