[PATCH] D126757: Fix clang RecursiveASTVisitor for definition of XXXTemplateSpecializationDecl

Richard Smith - zygoloid via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 3 16:32:20 PDT 2022


rsmith added inline comments.


================
Comment at: clang/include/clang/AST/RecursiveASTVisitor.h:2040
+      /* Traverse base definition for explicit specializations */              \
+      TRY_TO(Traverse##DECLKIND##Helper(D));                                   \
+    } else {                                                                   \
----------------
This should be done automatically by the `WalkUpFrom*` implementation, not here. Do you know why that's not happening?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D126757/new/

https://reviews.llvm.org/D126757



More information about the cfe-commits mailing list