================ @@ -3405,6 +3405,122 @@ getReplacedTemplateParameter(Decl *D, unsigned Index); /// If we have an implicit instantiation, adjust 'D' to refer to template. const Decl &adjustDeclToTemplate(const Decl &D); +/// Represents an explicit instantiation of a template entity in source code. +/// +/// This node records source location information for an explicit instantiation +/// statement. It does not participate in name lookup (inherits from Decl, not +/// NamedDecl), and does not affect code generation. The underlying +/// specialization decl (FunctionDecl, VarDecl, CXXRecordDecl, etc.) continues +/// to handle all semantic and codegen responsibilities. ---------------- 16bit-ykiko wrote:
Fixed. https://github.com/llvm/llvm-project/pull/191658 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
