summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2019-06-20 07:41:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-06-20 17:37:41 (GMT)
commit685d34a96e856fd0d7f3be99cc3ca60b3b7ce185 (patch)
tree909a62d9a75d617da8ef11ff833de3b50b4c80c5
parentd2bc62b1fa7f2df247199ed88edff30875ee19bc (diff)
downloadgit-685d34a96e856fd0d7f3be99cc3ca60b3b7ce185.zip
git-685d34a96e856fd0d7f3be99cc3ca60b3b7ce185.tar.gz
git-685d34a96e856fd0d7f3be99cc3ca60b3b7ce185.tar.bz2
khash: drop sha1-specific map types
All of the callers of khash_sha1 and khash_sha1_pos have been removed, in favor of using maps that use "struct object_id" as their keys. Let's drop these now-obsolete types. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--khash.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/khash.h b/khash.h
index ae9f783..cb2cd3d 100644
--- a/khash.h
+++ b/khash.h
@@ -324,14 +324,6 @@ static const double __ac_HASH_UPPER = 0.77;
code; \
} }
-#define __kh_oid_cmp(a, b) (hashcmp(a, b) == 0)
-
-KHASH_INIT(sha1, const unsigned char *, void *, 1, sha1hash, __kh_oid_cmp)
-typedef kh_sha1_t khash_sha1;
-
-KHASH_INIT(sha1_pos, const unsigned char *, int, 1, sha1hash, __kh_oid_cmp)
-typedef kh_sha1_pos_t khash_sha1_pos;
-
static inline unsigned int oid_hash(struct object_id oid)
{
return sha1hash(oid.hash);