Skip to content

Commit 68f6b90

Browse files
committed
BUG: Fix wrong khash method definition
1 parent ef019fa commit 68f6b90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/khash.pxd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ cdef extern from "khash_python.h":
8484
kh_uint64_t* kh_init_uint64() nogil
8585
void kh_destroy_uint64(kh_uint64_t*) nogil
8686
void kh_clear_uint64(kh_uint64_t*) nogil
87-
khint_t kh_get_uint64(kh_uint64_t*, int64_t) nogil
87+
khint_t kh_get_uint64(kh_uint64_t*, uint64_t) nogil
8888
void kh_resize_uint64(kh_uint64_t*, khint_t) nogil
89-
khint_t kh_put_uint64(kh_uint64_t*, int64_t, int*) nogil
89+
khint_t kh_put_uint64(kh_uint64_t*, uint64_t, int*) nogil
9090
void kh_del_uint64(kh_uint64_t*, khint_t) nogil
9191

9292
bint kh_exist_uint64(kh_uint64_t*, khiter_t) nogil

0 commit comments

Comments
 (0)