Fix: 'inline' not permitted on data declarations

This commit is contained in:
cgohlke
2012-09-29 15:51:17 -07:00
committed by Stefan van der Walt
parent 1f237325a1
commit 15ebe7d8b5
+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,