summaryrefslogtreecommitdiff
path: root/src/strmap.h
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2017-01-27 14:32:23 +0100
committerPatrick Steinhardt <ps@pks.im>2017-02-17 11:41:06 +0100
commit13c3bc9adf7c3e467c6d1a577859bf31d551022b (patch)
treed7623e1d522636bdb55f2d76118a18473ce56158 /src/strmap.h
parenta13cfd2af2aa2f9be660fc1c789405b5188b904d (diff)
downloadlibgit2-13c3bc9adf7c3e467c6d1a577859bf31d551022b.tar.gz
strmap: remove GIT__USE_STRMAP macro
Diffstat (limited to 'src/strmap.h')
-rw-r--r--src/strmap.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/strmap.h b/src/strmap.h
index 2c898e00b..389702c9b 100644
--- a/src/strmap.h
+++ b/src/strmap.h
@@ -20,9 +20,6 @@ __KHASH_TYPE(str, const char *, void *)
typedef khash_t(str) git_strmap;
typedef khiter_t git_strmap_iter;
-#define GIT__USE_STRMAP \
- __KHASH_IMPL(str, static kh_inline, const char *, void *, 1, kh_str_hash_func, kh_str_hash_equal)
-
int git_strmap_alloc(git_strmap **map);
#define git_strmap_free(h) git_strmap__free(h); (h) = NULL