Re: [PATCH 0/12] libstdc++: Refactor _Hashtable class

2024-11-13 Thread Jonathan Wakely
I've pushed this series now. On Fri, 8 Nov 2024 at 15:46, Jonathan Wakely wrote: > > This patch series attempts to remove some unnecessary complexity in the > internals of std::unordered_xxx containers. There is a lot of overloading, tag > dispatching, and inheritance that can be removed by using

[PATCH 0/12] libstdc++: Refactor _Hashtable class

2024-11-08 Thread Jonathan Wakely
This patch series attempts to remove some unnecessary complexity in the internals of std::unordered_xxx containers. There is a lot of overloading, tag dispatching, and inheritance that can be removed by using modern C++ features (with appropriate pragmas to disable warnings for older -std modes).