================
@@ -270,6 +270,10 @@ class RenamerClangTidyVisitor
}
bool VisitNamedDecl(NamedDecl *Decl) {
+ if (isa<FunctionTemplateDecl, ClassTemplateDecl, VarTemplateDecl,
+ TypeAliasTemplateDecl>(Decl))
+ return true;
----------------
zeyi2 wrote:Fixed, sorry for the mistake I made. https://github.com/llvm/llvm-project/pull/189788 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
