Remove unused function

Closes #878
This commit is contained in:
Cong Ding 2013-01-13 23:21:06 +01:00 committed by antirez
parent 100c3315be
commit 18ca831830

View File

@ -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) {