Remove unused HashFunction

This commit is contained in:
Wojtek Figat
2021-07-06 17:37:02 +02:00
parent b149d91c35
commit a3b3e6c799

View File

@@ -70,12 +70,6 @@ inline uint32 GetHash(const void* key)
return (uint32)((int64)(key) >> shift);
}
inline uint32 GetHash(void* key)
{
static const int64 shift = 3;
return (uint32)((int64)(key) >> shift);
}
template<typename EnumType>
inline typename TEnableIf<TIsEnum<EnumType>::Value, uint32>::Type GetHash(const EnumType key)
{