Re: [PATCH] libstdc++: add missing to_underlying to module std [PR106852]

2025-01-07 Thread Jonathan Wakely
On Sat, 4 Jan 2025 at 20:06, Nicolas Werner wrote: > > std::to_underlying was missing from the std module introduced in > 7db55c0ba1baaf0e323ef7f9ef8c9cda077d40e9. This patch adds the missing > export for this utility. > > There might be more exports missing, but this is the one I found when > try

[PATCH] libstdc++: add missing to_underlying to module std [PR106852]

2025-01-04 Thread Nicolas Werner
std::to_underlying was missing from the std module introduced in 7db55c0ba1baaf0e323ef7f9ef8c9cda077d40e9. This patch adds the missing export for this utility. There might be more exports missing, but this is the one I found when trying to compile some test projects. PR libstdc++/106852 libstdc+