Mercurial > touhou
diff pytouhou/utils/interpolator.pxd @ 540:53fa73932e9a
Fix warnings introduced in Cython 0.20, when more than one pointer is defined on the same line.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 10 May 2014 22:20:22 +0200 |
parents | d778db08190f |
children |
line wrap: on
line diff
--- a/pytouhou/utils/interpolator.pxd +++ b/pytouhou/utils/interpolator.pxd @@ -1,7 +1,9 @@ cdef class Interpolator: cdef unsigned long start_frame, end_frame, _frame cdef long _length - cdef double *_values, *start_values, *end_values + cdef double *_values + cdef double *start_values + cdef double *end_values cdef object _formula cpdef set_interpolation_start(self, unsigned long frame, tuple values)