Re: [PATCH 2/3] libstdc++: Simplify copy-pasted algorithms in

2021-04-01 Thread Jonathan Wakely via Gcc-patches
On 29/03/21 14:49 -0400, Patrick Palka via Libstdc++ wrote: The header currently copies some simple algorithms from , which was originally done in order to avoid a circular dependency with the header. This is no longer an issue since the latter header now includes instead of all of . This mea

Re: [PATCH 2/3] libstdc++: Simplify copy-pasted algorithms in

2021-03-29 Thread Patrick Palka via Gcc-patches
On Mon, 29 Mar 2021, Patrick Palka wrote: > The header currently copies some simple algorithms from > , which was originally done in order to avoid a > circular dependency with the header. This is no longer an issue since > the latter header now includes instead of all of > . > > This means we

[PATCH 2/3] libstdc++: Simplify copy-pasted algorithms in

2021-03-29 Thread Patrick Palka via Gcc-patches
The header currently copies some simple algorithms from , which was originally done in order to avoid a circular dependency with the header. This is no longer an issue since the latter header now includes instead of all of . This means we could now just include and remove the copied algorithms