[Bug libstdc++/86127] STL containers do not satisfy container.requirements.general clause 8
redi at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Jun 13 13:09:00 GMT 2018
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86127
Jonathan Wakely <redi at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Last reconfirmed| |2018-06-13
Resolution|INVALID |---
Ever confirmed|0 |1
--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
We can avoid the "template copy constructor" lines with a trivial fix to
forward_list though, and then we get:
forward_list test
==================
template copy constructor
move constructor
move constructor
map test
==================
copy constructor
template copy constructor
move constructor
move constructor
vector test
==================
copy constructor
move constructor
All copies come from the initializer-list constructors.
More information about the Gcc-bugs
mailing list