I'm getting this error in Boost 1.80.0 with Clang/Libc++-15
/boost/boost/container_hash/hash.hpp:132:33: error: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'?
struct hash_base : std::unary_function<T, std::size_t> {};
It looks like this is already fixed here and has been since 2019, 5048576 and the current version doesn't even have any std::unary_function code, even with a guard. Is there a timeline for the version of container_hash in this repo to merged into the released version of Boost?
I'm getting this error in Boost 1.80.0 with Clang/Libc++-15
It looks like this is already fixed here and has been since 2019, 5048576 and the current version doesn't even have any
std::unary_functioncode, even with a guard. Is there a timeline for the version ofcontainer_hashin this repo to merged into the released version of Boost?