[clang-tools-extra] [clang-tidy] Fix readability-identifier-naming FP with DefaultCase on function templates (PR #189788)
Baranov Victor via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 8 21:46:51 PDT 2026
================
@@ -1303,6 +1303,10 @@ StyleKind IdentifierNamingCheck::findStyleKind(
return SK_Function;
}
+ if (isa<FunctionTemplateDecl, ClassTemplateDecl, VarTemplateDecl,
----------------
vbvictor wrote:
Can we add comment here why we are skipping these as "invalid"
https://github.com/llvm/llvm-project/pull/189788
More information about the cfe-commits
mailing list