[clang] [clang][dataflow] Add captured parameters to ReferencedDecls for lamb… (PR #117771)
Samira Bazuzi via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 26 15:25:54 PST 2024
================
@@ -281,6 +282,17 @@ ReferencedDecls getReferencedDecls(const FunctionDecl &FD) {
Visitor.TraverseStmt(FD.getBody());
if (const auto *CtorDecl = dyn_cast<CXXConstructorDecl>(&FD))
Visitor.traverseConstructorInits(CtorDecl);
+ if (const auto *Method = dyn_cast<CXXMethodDecl>(&FD);
----------------
bazuzi wrote:
Expanded on the commit description here, but let me know if this got too verbose.
https://github.com/llvm/llvm-project/pull/117771
More information about the cfe-commits
mailing list