diff options
author | David Cournapeau <cournape@gmail.com> | 2008-10-08 13:34:09 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-10-08 13:34:09 +0000 |
commit | 0f3fbf1eab50c35199908a0532de82c0b4917024 (patch) | |
tree | 54b064e9717b309e7af9b910605b36692a278840 /numpy/core/src/arraymethods.c | |
parent | dd7abccf331365e58b867a5601db089a1c51444a (diff) | |
download | numpy-0f3fbf1eab50c35199908a0532de82c0b4917024.tar.gz |
Use NPY_UNUSED in numpy.core sources.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c index 8e50bcdf7..7615fcfb9 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -1105,7 +1105,7 @@ _setlist_pkl(PyArrayObject *self, PyObject *list) static PyObject * -array_reduce(PyArrayObject *self, PyObject *args) +array_reduce(PyArrayObject *self, PyObject *NPY_UNUSED(args)) { /* version number of this pickle type. Increment if we need to change the format. Be sure to handle the old versions in |