mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-19 01:30:51 +00:00
Missed a couple of khash inline dependencies
This commit is contained in:
parent
72ee078762
commit
39b8e047b4
@ -34,7 +34,7 @@ GIT_INLINE(int) hash_git_oid_equal(const git_oid *a, const git_oid *b)
|
||||
}
|
||||
|
||||
#define GIT__USE_OIDMAP \
|
||||
__KHASH_IMPL(oid, static inline, const git_oid *, void *, 1, hash_git_oid, hash_git_oid_equal)
|
||||
__KHASH_IMPL(oid, static kh_inline, const git_oid *, void *, 1, hash_git_oid, hash_git_oid_equal)
|
||||
|
||||
#define git_oidmap_alloc() kh_init(oid)
|
||||
#define git_oidmap_free(h) kh_destroy(oid,h), h = NULL
|
||||
|
@ -19,7 +19,7 @@ __KHASH_TYPE(str, const char *, void *);
|
||||
typedef khash_t(str) git_strmap;
|
||||
|
||||
#define GIT__USE_STRMAP \
|
||||
__KHASH_IMPL(str, static inline, const char *, void *, 1, kh_str_hash_func, kh_str_hash_equal)
|
||||
__KHASH_IMPL(str, static kh_inline, const char *, void *, 1, kh_str_hash_func, kh_str_hash_equal)
|
||||
|
||||
#define git_strmap_alloc() kh_init(str)
|
||||
#define git_strmap_free(h) kh_destroy(str, h), h = NULL
|
||||
|
Loading…
Reference in New Issue
Block a user