summaryrefslogtreecommitdiff
path: root/src/dict.h
diff options
context:
space:
mode:
authorBinbin <binloveplay1314@qq.com>2021-05-09 20:21:18 +0800
committerGitHub <noreply@github.com>2021-05-09 15:21:18 +0300
commit56976ffb4940b95cc3746b115d7f957c9e4b20f8 (patch)
tree5fe6e16f674374c32539f8a1961988433a0bb00d /src/dict.h
parent57b94eacaa64591295c9f9f9bb50eed9ed8b9a54 (diff)
downloadredis-56976ffb4940b95cc3746b115d7f957c9e4b20f8.tar.gz
Use function instead of code in dict.c and delete dead code in dict.h (#8878)
Use function instead of code in dict.c and delete dead code in dict.h
Diffstat (limited to 'src/dict.h')
-rw-r--r--src/dict.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/dict.h b/src/dict.h
index 7e2258960..02af65cf8 100644
--- a/src/dict.h
+++ b/src/dict.h
@@ -196,11 +196,6 @@ unsigned long dictScan(dict *d, unsigned long v, dictScanFunction *fn, dictScanB
uint64_t dictGetHash(dict *d, const void *key);
dictEntry **dictFindEntryRefByPtrAndHash(dict *d, const void *oldptr, uint64_t hash);
-/* Hash table types */
-extern dictType dictTypeHeapStringCopyKey;
-extern dictType dictTypeHeapStrings;
-extern dictType dictTypeHeapStringCopyKeyValue;
-
#ifdef REDIS_TEST
int dictTest(int argc, char *argv[], int accurate);
#endif