Merge pull request #8435

cf3be99 Template hash func to fix compiler error on < gcc-6 (j-berman)
pull/470/head
luigi1111 2 years ago
commit b6a029f222
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -64,3 +64,13 @@ namespace net_utils
} // net_utils
} // epee
namespace std
{
template<> struct hash<epee::net_utils::zone>
{
std::size_t operator()(const epee::net_utils::zone _z) const
{
return static_cast<std::size_t>(_z);
}
};
} // std

Loading…
Cancel
Save