[clang] [clang-tools-extra] [clang] Implement CWG2398 provisional TTP matching to class templates (PR #94981)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Sep 7 09:10:57 PDT 2024
================
@@ -645,6 +645,9 @@ static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
// It is sufficient to check value of getAsTemplateDecl.
break;
+ case TemplateName::DeducedTemplate:
+ // FIXME: We can't reach here.
+ llvm_unreachable("unimplemented");
----------------
cor3ntin wrote:
Hum, fair enough. It's hard to me to understand how we could ever get there though
https://github.com/llvm/llvm-project/pull/94981
More information about the cfe-commits
mailing list