summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-04-11 11:43:11 +0200
committerStefan Behnel <stefan_ml@behnel.de>2015-04-11 11:43:11 +0200
commit4bfdc8da19476e572b269fa51960f167bb0007e6 (patch)
tree56acf0e54d628b9e2b6488d585d17cbf573ad43c
parentbf69c4107119ebddcefa267d4cea72863909e59f (diff)
downloadcython-4bfdc8da19476e572b269fa51960f167bb0007e6.tar.gz
fix "unused" marker in utility code
-rw-r--r--Cython/Utility/ObjectHandling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/ObjectHandling.c b/Cython/Utility/ObjectHandling.c
index 1afcb1fb8..cd9ae5b85 100644
--- a/Cython/Utility/ObjectHandling.c
+++ b/Cython/Utility/ObjectHandling.c
@@ -486,7 +486,7 @@ static CYTHON_INLINE int __Pyx_PyObject_SetSlice(PyObject* obj, PyObject* value,
{{endif}}
Py_ssize_t cstart, Py_ssize_t cstop,
PyObject** _py_start, PyObject** _py_stop, PyObject** _py_slice,
- int has_cstart, int has_cstop, CYTHON_NCP_UNUSED int wraparound) {
+ int has_cstart, int has_cstop, CYTHON_UNUSED int wraparound) {
#if CYTHON_COMPILING_IN_CPYTHON
PyMappingMethods* mp;
#if PY_MAJOR_VERSION < 3