Commit 02773431 authored by Stefan Behnel's avatar Stefan Behnel

Avoid "unused" C compiler warning.

parent f34cddc4
...@@ -1187,6 +1187,8 @@ bad: ...@@ -1187,6 +1187,8 @@ bad:
super_type = __Pyx_GetBuiltinName(PYIDENT("super")); super_type = __Pyx_GetBuiltinName(PYIDENT("super"));
#else #else
super_type = (PyObject*) &PySuper_Type; super_type = (PyObject*) &PySuper_Type;
// avoid "unused" warning
(void) __Pyx_GetBuiltinName;
#endif #endif
super = likely(super_type) ? __Pyx_PyObject_Call2Args(super_type, type_obj, type_obj) : NULL; super = likely(super_type) ? __Pyx_PyObject_Call2Args(super_type, type_obj, type_obj) : NULL;
#if CYTHON_COMPILING_IN_PYPY && !defined(PySuper_Type) #if CYTHON_COMPILING_IN_PYPY && !defined(PySuper_Type)
...@@ -1258,6 +1260,9 @@ static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObj ...@@ -1258,6 +1260,9 @@ static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObj
result = __Pyx_InitSubclassPEP487(result, mkw); result = __Pyx_InitSubclassPEP487(result, mkw);
} }
} }
#else
// avoid "unused" warning
(void) __Pyx_GetBuiltinName;
#endif #endif
return result; return result;
} }
......
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