Commit de0a73eb authored by Lisandro Dalcin's avatar Lisandro Dalcin

Silent GCC warnings about unused funcs from NumPy headers

parent 27b95023
cdef extern from *: cdef extern from *:
bint FALSE "0"
void import_array() void import_array()
void import_umath() void import_umath()
if 0: if FALSE:
import_array() import_array()
import_umath() import_umath()
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
cimport cython cimport cython
from cython.parallel import prange from cython.parallel import prange
cimport numpy as np cimport numpy as np
include "numpy_common.pxi"
@cython.boundscheck(False) @cython.boundscheck(False)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment