diff options
Diffstat (limited to 'src/runtime/c/gu/map.h')
| -rw-r--r-- | src/runtime/c/gu/map.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/runtime/c/gu/map.h b/src/runtime/c/gu/map.h index 6523a8057..327d6ea6a 100644 --- a/src/runtime/c/gu/map.h +++ b/src/runtime/c/gu/map.h @@ -52,12 +52,8 @@ gu_map_find(GuMap* ht, const void* key); const void* gu_map_find_key(GuMap* ht, const void* key); -static inline bool -gu_map_has(GuMap* ht, const void* key) -{ - return gu_map_find_key(ht, key) != NULL; -} - +bool +gu_map_has(GuMap* ht, const void* key); void* gu_map_insert(GuMap* ht, const void* key); |
