================
@@ -79,6 +79,10 @@ void InlineFunctionDeclCheck::check(const 
MatchFinder::MatchResult &Result) {
     if (MethodDecl->getParent()->isLambda())
       return;
 
+  // Ignore implicit functions (e.g. implicit constructors or destructors)
+  if (FuncDecl->isImplicit())
----------------
michaelrj-google wrote:

that works, thank you!

https://github.com/llvm/llvm-project/pull/71095
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to