Add DefaultHashFunctor<CUtlStringToken>

This commit is contained in:
GAMMACASE 2024-05-08 21:58:43 +03:00
parent 74283e80d8
commit 36dd2db721

View File

@ -159,6 +159,7 @@ template <> struct DefaultHashFunctor<signed long> : Mix32HashFunctor { };
template <> struct DefaultHashFunctor<unsigned long> : Mix32HashFunctor { };
template <> struct DefaultHashFunctor<void*> : PointerHashFunctor { };
template <> struct DefaultHashFunctor<const void*> : PointerHashFunctor { };
template <> struct DefaultHashFunctor<CUtlStringToken> : Mix32HashFunctor { };
#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED)
template <> struct DefaultHashFunctor<wchar_t> : Mix32HashFunctor { };
#endif