[clang-tools-extra] [clang-tidy] Fix readability-identifier-naming FP with DefaultCase on function templates (PR #189788)

Zeyi Xu via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 3 03:21:12 PDT 2026


================
@@ -270,6 +273,9 @@ class RenamerClangTidyVisitor
   }
 
   bool VisitNamedDecl(NamedDecl *Decl) {
+    if (isa<TypeAliasTemplateDecl>(Decl))
----------------
zeyi2 wrote:

Fixed, thanks!

https://github.com/llvm/llvm-project/pull/189788


More information about the cfe-commits mailing list