diff options
-rw-r--r-- | numpy/core/src/scalarmathmodule.c.src | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/src/scalarmathmodule.c.src b/numpy/core/src/scalarmathmodule.c.src index be626d2af..f1f7d5ad2 100644 --- a/numpy/core/src/scalarmathmodule.c.src +++ b/numpy/core/src/scalarmathmodule.c.src @@ -54,7 +54,7 @@ static int ulonglong_overflow(ulonglong a, ulonglong b) #else static int ulonglong_overflow(ulonglong NPY_UNUSED(a), ulonglong NPY_UNUSED(b)) { - return 0; + return 0; } #endif @@ -1055,9 +1055,9 @@ static PyObject* if (PyErr_Occurred()) return NULL; return PyGenericArrType_Type.tp_richcompare(self, other, cmp_op); case -3: /* special case for longdouble and clongdouble - because they have a recursive getitem in their dtype */ + because they have a recursive getitem in their dtype */ Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; + return Py_NotImplemented; } /* here we do the actual calculation with arg1 and arg2 */ |