[clang] [clang-tools-extra] [clang] Implement CWG2398 provisional TTP matching to class templates (PR #94981)
Matheus Izvekov via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 5 13:42:36 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");
----------------
mizvekov wrote:
Well it's both, ideally we should implement this, but we don't implement other stuff that would even allow us to reach here.
https://github.com/llvm/llvm-project/pull/94981
More information about the cfe-commits
mailing list