diff --git a/src/dict.c b/src/dict.c index 1606745bae83def854bcb3e389702d5b8e520b2e..81cdfe0ea720ee2fe7387b3057e8c95f23913d83 100644 --- a/src/dict.c +++ b/src/dict.c @@ -79,12 +79,6 @@ unsigned int dictIntHashFunction(unsigned int key) return key; } -/* Identity hash function for integer keys */ -unsigned int dictIdentityHashFunction(unsigned int key) -{ - return key; -} - static uint32_t dict_hash_function_seed = 5381; void dictSetHashFunctionSeed(uint32_t seed) {