[clang] [AST] Iterate redecls starting from the canonical one in getRawCommentsForAnyRedecl() (PR #108475)
Nathan Ridge via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 18 21:55:42 PDT 2024
================
@@ -444,7 +444,7 @@ const RawComment *ASTContext::getRawCommentForAnyRedecl(
return CommentlessRedeclChains.lookup(CanonicalD);
}();
- for (const auto Redecl : D->redecls()) {
+ for (const auto Redecl : CanonicalD->redecls()) {
----------------
HighCommander4 wrote:
Thank you for the suggestion! It indeed feels safer to tweak `getRawCommentsForAnyRedecl()` like this than to muck around with the modeling of template specializations :laughing:
https://github.com/llvm/llvm-project/pull/108475
More information about the cfe-commits
mailing list