diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/include/numpy/arrayobject.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/core/include/numpy/arrayobject.h b/numpy/core/include/numpy/arrayobject.h index 34362c981..fef27a37d 100644 --- a/numpy/core/include/numpy/arrayobject.h +++ b/numpy/core/include/numpy/arrayobject.h @@ -968,9 +968,7 @@ typedef int (PyArray_FinalizeFunc)(PyArrayObject *, PyObject *); #define PyArray_ISALIGNED(m) PyArray_CHKFLAGS(m, NPY_ALIGNED) #define NPY_MAX(a,b) (((a)>(b))?(a):(b)) -#define NPY_tMAX(a,b,typ) {typ _x_=(a); typ _y_=(b); _x_>_y_ ? _x_ : _y_} #define NPY_MIN(a,b) (((a)<(b))?(a):(b)) -#define NPY_tMIN(a,b,typ) {typ _x_=(a); typ _y_=(b); _x_<_y_ ? _x_ : _y_} #if defined(ALLOW_THREADS) #define NPY_BEGIN_THREADS_DEF PyThreadState *_save; |