Fix: 'inline' not permitted on data declarations

This commit is contained in:
cgohlke
2012-09-29 15:51:17 -07:00
parent 97d595eb61
commit 2695015b3a
+2 -3
View File
@@ -1,6 +1,5 @@
cdef inline unsigned char point_in_polygon(int nr_verts, double *xp, double *yp,
double x, double y)
cdef unsigned char point_in_polygon(int nr_verts, double *xp, double *yp,
double x, double y)
cdef void points_in_polygon(int nr_verts, double *xp, double *yp,
int nr_points, double *x, double *y,