Commit e5f13a28 authored by Stefan Behnel's avatar Stefan Behnel

fix C compiler warning about unused parameter

parent 3aa55e65
...@@ -559,7 +559,7 @@ void __Pyx_Coroutine_ExceptionClear(__pyx_CoroutineObject *self) { ...@@ -559,7 +559,7 @@ void __Pyx_Coroutine_ExceptionClear(__pyx_CoroutineObject *self) {
} }
#define __Pyx_Coroutine_AlreadyRunningError(gen) (__Pyx__Coroutine_AlreadyRunningError(gen), (PyObject*)NULL) #define __Pyx_Coroutine_AlreadyRunningError(gen) (__Pyx__Coroutine_AlreadyRunningError(gen), (PyObject*)NULL)
static void __Pyx__Coroutine_AlreadyRunningError(__pyx_CoroutineObject *gen) { static void __Pyx__Coroutine_AlreadyRunningError(CYTHON_UNUSED __pyx_CoroutineObject *gen) {
const char *msg; const char *msg;
if (0) { if (0) {
#ifdef __Pyx_Coroutine_USED #ifdef __Pyx_Coroutine_USED
......
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