Re: Forward list default default and move constructors

2017-07-12 Thread François Dumont
On 05/07/2017 18:10, Jonathan Wakely wrote: On 19/06/17 22:48 +0200, François Dumont wrote: Hi Here is the patch to default the default and move constructors on the std::forward_list. Putting a move constructor on _Fwd_list_node_base helped limiting the code impact of this patch. It doesn

Re: Forward list default default and move constructors

2017-07-05 Thread Jonathan Wakely
On 19/06/17 22:48 +0200, François Dumont wrote: Hi Here is the patch to default the default and move constructors on the std::forward_list. Putting a move constructor on _Fwd_list_node_base helped limiting the code impact of this patch. It doesn't have any side effect as iterator types usi

Forward list default default and move constructors

2017-06-19 Thread François Dumont
Hi Here is the patch to default the default and move constructors on the std::forward_list. Putting a move constructor on _Fwd_list_node_base helped limiting the code impact of this patch. It doesn't have any side effect as iterator types using this base type are not defining any move sem