From a3b3e6c7997e85aa8387469e7a02b85b08c5477d Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 6 Jul 2021 17:37:02 +0200 Subject: [PATCH] Remove unused HashFunction --- Source/Engine/Core/Collections/HashFunctions.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/Engine/Core/Collections/HashFunctions.h b/Source/Engine/Core/Collections/HashFunctions.h index 83e8907d0..728970c61 100644 --- a/Source/Engine/Core/Collections/HashFunctions.h +++ b/Source/Engine/Core/Collections/HashFunctions.h @@ -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 inline typename TEnableIf::Value, uint32>::Type GetHash(const EnumType key) {