summaryrefslogtreecommitdiff
path: root/src/offmap.h
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2017-02-02 11:58:48 +0100
committerPatrick Steinhardt <ps@pks.im>2017-02-17 11:41:06 +0100
commit8f5fe903d629309cf711bf3c7a0c8e9b6826b0a0 (patch)
tree7443f2c8eadd4d68e80241775f8a47eac97516ac /src/offmap.h
parentcf6124d68b8a7a2b98e7191fa4c4a5a149c09420 (diff)
downloadlibgit2-8f5fe903d629309cf711bf3c7a0c8e9b6826b0a0.tar.gz
offmap: remove GIT__USE_OFFMAP macro
Diffstat (limited to 'src/offmap.h')
-rw-r--r--src/offmap.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/offmap.h b/src/offmap.h
index db79e485e..1f30cda6d 100644
--- a/src/offmap.h
+++ b/src/offmap.h
@@ -20,9 +20,6 @@
__KHASH_TYPE(off, git_off_t, void *)
typedef khash_t(off) git_offmap;
-#define GIT__USE_OFFMAP \
- __KHASH_IMPL(off, static kh_inline, git_off_t, void *, 1, kh_int64_hash_func, kh_int64_hash_equal)
-
git_offmap *git_offmap_alloc(void);
#define git_offmap_free(h) git_offmap__free(h); (h) = NULL
void git_offmap__free(git_offmap *map);