Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2012-07-12 22:52:10 +0400
committerRussell Belfer <rb@github.com>2012-07-12 22:52:10 +0400
commit39b8e047b4e18cb1de45335027e9c79a4c70a75b (patch)
treef88484a2c64d7ba948948b0a13a2d13f5dc29841 /src/strmap.h
parent72ee07876295c241892edf4ccde15caf2c657413 (diff)
Missed a couple of khash inline dependencies
Diffstat (limited to 'src/strmap.h')
-rw-r--r--src/strmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strmap.h b/src/strmap.h
index da5ca0dba..9972039a0 100644
--- a/src/strmap.h
+++ b/src/strmap.h
@@ -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