[PATCH] libstdc++: Missing 'constexpr' in vector's from_range ctor [PR119282]

2025-03-15 Thread Patrick Palka
Tested on x86_64-pc-linux-gnu, does this look OK for trunk? We could use a direct constexpr test for this from_range vector ctor code path, but that'll be easier once we make the __gnu_test range/iterators constexpr-friendly. For now I just added an end-to-end test, which seems good to have too.

Re: [PATCH] libstdc++: Missing 'constexpr' in vector's from_range ctor [PR119282]

2025-03-14 Thread Jonathan Wakely
On Fri, 14 Mar 2025 at 17:16, Patrick Palka wrote: > > Tested on x86_64-pc-linux-gnu, does this look OK for trunk? We could > use a direct constexpr test for this from_range vector ctor code path, > but that'll be easier once we make the __gnu_test range/iterators > constexpr-friendly. For now I