================
@@ -428,6 +428,8 @@ class ASTNodeTraverser
   void VisitFunctionDecl(const FunctionDecl *D) {
     if (const auto *FTSI = D->getTemplateSpecializationInfo())
       dumpTemplateArgumentList(*FTSI->TemplateArguments);
+    else if (const auto *DFTSI = D->getDependentSpecializationInfo())
----------------
erichkeane wrote:

Annoyingly, we're using 'auto' around here, but based on my understanding of 
our coding standard, it isn't permitted here (as the RHS doesn't state the 
type).

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

Reply via email to