summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCong Ding <dinggnu@gmail.com>2013-01-13 23:21:06 +0100
committerantirez <antirez@gmail.com>2014-08-18 11:12:26 +0200
commit18ca831830b3fdcae0c3aade84c88d4204db6533 (patch)
treea844b766ec6564f7117bb0d8862a23c8aa3ce359
parent100c3315be5faafbdaa3fdcc5f302a5d599f0cd0 (diff)
downloadredis-18ca831830b3fdcae0c3aade84c88d4204db6533.tar.gz
Remove unused function
Closes #878
-rw-r--r--src/dict.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dict.c b/src/dict.c
index 42e75fc22..17818b853 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) {