diff options
author | Jason Merrill <jason@redhat.com> | 2022-04-11 17:51:43 -0400 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2022-04-11 23:57:08 -0400 |
commit | 4195fced8a13422db94e179404588d9d887a036a (patch) | |
tree | 3a085b55cd3c7d23637e6309b41fbd4433bc48c5 /gcc | |
parent | 6afb21b824dabf17c79e7b0a4230572f091307ec (diff) | |
download | gcc-4195fced8a13422db94e179404588d9d887a036a.zip gcc-4195fced8a13422db94e179404588d9d887a036a.tar.gz gcc-4195fced8a13422db94e179404588d9d887a036a.tar.bz2 |
c++: using operator= [PR105223]
In a template class A we normally add an implicit using A::operator= as a
placeholder for the implicitly declared operator whose signature we don't
know yet. In my patch for PR92918 I stopped doing that if the class has an
explicit operator=, but that was wrong; an operator= taking an unrelated
type doesn't prevent the implicit declaration.
When I was working on that patch, the change was necessary to avoid another
regression, but apparently it is no longer needed.
PR c++/105223
PR c++/92918
gcc/cp/ChangeLog:
* class.cc (finish_struct): Always using op=.
gcc/testsuite/ChangeLog:
* g++.dg/template/using31.C: New test.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/class.cc | 19 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/template/using31.C | 16 |
2 files changed, 24 insertions, 11 deletions
diff --git a/gcc/cp/class.cc b/gcc/cp/class.cc index 40e1714..bfda006 100644 --- a/gcc/cp/class.cc +++ b/gcc/cp/class.cc @@ -7723,17 +7723,14 @@ finish_struct (tree t, tree attributes) lookup not to fail or recurse into bases. This isn't added to the template decl list so we drop this at instantiation time. */ - if (!get_class_binding_direct (t, assign_op_identifier, false)) - { - tree ass_op = build_lang_decl (USING_DECL, assign_op_identifier, - NULL_TREE); - DECL_CONTEXT (ass_op) = t; - USING_DECL_SCOPE (ass_op) = t; - DECL_DEPENDENT_P (ass_op) = true; - DECL_ARTIFICIAL (ass_op) = true; - DECL_CHAIN (ass_op) = TYPE_FIELDS (t); - TYPE_FIELDS (t) = ass_op; - } + tree ass_op = build_lang_decl (USING_DECL, assign_op_identifier, + NULL_TREE); + DECL_CONTEXT (ass_op) = t; + USING_DECL_SCOPE (ass_op) = t; + DECL_DEPENDENT_P (ass_op) = true; + DECL_ARTIFICIAL (ass_op) = true; + DECL_CHAIN (ass_op) = TYPE_FIELDS (t); + TYPE_FIELDS (t) = ass_op; TYPE_SIZE (t) = bitsize_zero_node; TYPE_SIZE_UNIT (t) = size_zero_node; diff --git a/gcc/testsuite/g++.dg/template/using31.C b/gcc/testsuite/g++.dg/template/using31.C new file mode 100644 index 0000000..bfeb94f --- /dev/null +++ b/gcc/testsuite/g++.dg/template/using31.C @@ -0,0 +1,16 @@ +// PR c++/105223 + +struct ServiceReferenceBase { + void operator=(int); +}; + +template<class> +struct ServiceReference : ServiceReferenceBase { + void foo() { operator=(0); } + using ServiceReferenceBase::operator=; +}; + +int main() { + ServiceReference<int> sr; + sr.foo(); +} |