Re: [Boost-users] boost::hash_value not picking up std::hash specialisations

2020-12-21 Thread Marc Mutz via Boost-users
On 2020-12-21 11:55, Marc Mutz via Boost-users wrote: I'm trying to move away from Qt containers in my source code, and Qt 5.15 makes that a bit easier by providing + std::hash specialisations for some its types. ___ Boost-users mailing list Boost-

[Boost-users] boost::hash_value not picking up std::hash specialisations

2020-12-21 Thread Marc Mutz via Boost-users
Hi, I'm trying to move away from Qt containers in my source code, and Qt 5.15 makes that a bit easier by providing specialisations for some its types. Now I have a struct S { QLatin1String a, b; } that I'd like to hash. I can use boost::hash_combine to implement std::hash, but S is actually