File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ cdef extern from "parser/tokenizer.h":
255
255
256
256
# inline int to_complex(char *item, double *p_real,
257
257
# double *p_imag, char sci, char decimal)
258
- inline int to_longlong(char * item, long long * p_value) nogil
258
+ int to_longlong(char * item, long long * p_value) nogil
259
259
# inline int to_longlong_thousands(char *item, long long *p_value,
260
260
# char tsep)
261
261
int to_boolean(const char * item, uint8_t * val) nogil
Original file line number Diff line number Diff line change @@ -1015,7 +1015,7 @@ cpdef bint is_interval_array(ndarray[object] values):
1015
1015
1016
1016
1017
1017
cdef extern from " parse_helper.h" :
1018
- inline int floatify(object , double * result, int * maybe_int) except - 1
1018
+ int floatify(object , double * result, int * maybe_int) except - 1
1019
1019
1020
1020
# constants that will be compared to potentially arbitrarily large
1021
1021
# python int
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ cdef extern from "khash_python.h":
13
13
14
14
kh_pymap_t* kh_init_pymap()
15
15
void kh_destroy_pymap(kh_pymap_t* )
16
- inline void kh_clear_pymap(kh_pymap_t* )
16
+ void kh_clear_pymap(kh_pymap_t* )
17
17
khint_t kh_get_pymap(kh_pymap_t* , PyObject* )
18
18
void kh_resize_pymap(kh_pymap_t* , khint_t)
19
19
khint_t kh_put_pymap(kh_pymap_t* , PyObject* , int * )
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ cdef extern from "skiplist.h":
14
14
int size
15
15
int maxlevels
16
16
17
- inline skiplist_t* skiplist_init(int ) nogil
18
- inline void skiplist_destroy(skiplist_t* ) nogil
19
- inline double skiplist_get(skiplist_t* , int , int * ) nogil
20
- inline int skiplist_insert(skiplist_t* , double ) nogil
21
- inline int skiplist_remove(skiplist_t* , double ) nogil
17
+ skiplist_t* skiplist_init(int ) nogil
18
+ void skiplist_destroy(skiplist_t* ) nogil
19
+ double skiplist_get(skiplist_t* , int , int * ) nogil
20
+ int skiplist_insert(skiplist_t* , double ) nogil
21
+ int skiplist_remove(skiplist_t* , double ) nogil
22
22
You can’t perform that action at this time.
0 commit comments