Re: [committed] libstdc++: Fix filesystem::path comparisons for C++23

2021-06-14 Thread Jonathan Wakely via Gcc-patches
On Mon, 14 Jun 2021 at 13:58, Christophe Lyon wrote: > > Hi Jonathan, > > On Fri, 11 Jun 2021 at 20:25, Jonathan Wakely via Gcc-patches > wrote: > > > > In C++23 there is a basic_string_view(Range&&) constructor, which is > > constrained to take a range (specifically, a contiguous_range). When th

Re: [committed] libstdc++: Fix filesystem::path comparisons for C++23

2021-06-14 Thread Christophe Lyon via Gcc-patches
Hi Jonathan, On Fri, 11 Jun 2021 at 20:25, Jonathan Wakely via Gcc-patches wrote: > > In C++23 there is a basic_string_view(Range&&) constructor, which is > constrained to take a range (specifically, a contiguous_range). When the > filesystem::path comparison operators call lhs.compare(rhs) the o