mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
fix compile error
This commit is contained in:
@@ -136,8 +136,8 @@ kh_fill_flags(uint8_t *p, uint8_t c, size_t len)
|
||||
} \
|
||||
khint_t kh_get_##name(mrb_state *mrb, kh_##name##_t *h, khkey_t key) \
|
||||
{ \
|
||||
(void)mrb; \
|
||||
khint_t k = __hash_func(mrb,key) & (h->mask); \
|
||||
(void)mrb; \
|
||||
while (!__ac_isempty(h->ed_flags, k)) { \
|
||||
if (!__ac_isdel(h->ed_flags, k)) { \
|
||||
if (__hash_equal(mrb,h->keys[k], key)) return k; \
|
||||
|
||||
Reference in New Issue
Block a user