2019-12-10 Jason Merrill <jason@redhat.com>
+ PR c++/92847 - C++20 comparison ambiguity with class template.
+ * call.c (cand_parms_match): Handle all templated functions.
+
Fix C++20 structural type vs. private base.
* class.c (build_base_field_1): Take access parameter.
(build_base_field): Likewise.
bool
cand_parms_match (z_candidate *c1, z_candidate *c2)
{
- tree fn1 = c1->template_decl;
- tree fn2 = c2->template_decl;
- if (fn1 && fn2)
- {
- fn1 = most_general_template (TI_TEMPLATE (fn1));
- fn1 = DECL_TEMPLATE_RESULT (fn1);
- fn2 = most_general_template (TI_TEMPLATE (fn2));
- fn2 = DECL_TEMPLATE_RESULT (fn2);
- }
- else
- {
- fn1 = c1->fn;
- fn2 = c2->fn;
- }
+ tree fn1 = c1->fn;
+ tree fn2 = c2->fn;
if (fn1 == fn2)
return true;
if (identifier_p (fn1) || identifier_p (fn2))
return false;
+ /* We don't look at c1->template_decl because that's only set for primary
+ templates, not e.g. non-template member functions of class templates. */
+ tree t1 = most_general_template (fn1);
+ tree t2 = most_general_template (fn2);
+ if (t1 || t2)
+ {
+ if (!t1 || !t2)
+ return false;
+ if (t1 == t2)
+ return true;
+ fn1 = DECL_TEMPLATE_RESULT (t1);
+ fn2 = DECL_TEMPLATE_RESULT (t2);
+ }
return compparms (TYPE_ARG_TYPES (TREE_TYPE (fn1)),
TYPE_ARG_TYPES (TREE_TYPE (fn2)));
}