Commit bb69beef authored by Stefan Behnel's avatar Stefan Behnel

suppress warning about unused value by casting it to (void)

parent 8bf936e5
......@@ -213,7 +213,7 @@ typedef struct {
#endif
#endif
#define __Pyx_void_to_None(void_result) (void_result, Py_INCREF(Py_None), Py_None)
#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None)
/////////////// CInitCode ///////////////
......
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