================
@@ -135,7 +135,19 @@ class UncountedLocalVarsChecker
       bool shouldVisitImplicitCode() const { return false; }
 
       bool VisitVarDecl(VarDecl *V) {
-        Checker->visitVarDecl(V);
+        auto *Init = V->getInit();
+        if (Init && V->isLocalVarDecl())
----------------
rniwa wrote:

Oh, interesting. I *think* we do want to check static local variables as well 
since there is nothing preventing static local variable to be a raw pointer to 
a ref counted type, which is also bad.

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

Reply via email to