Commit 19a3842d authored by Ian Henriksen's avatar Ian Henriksen

Fixed mismatched parenthesis.

parent 4d538fb5
......@@ -30,7 +30,7 @@
// Use MS-specific _abs64 instead.
#define __Pyx_sst_abs(value) _abs64(value)
#else
#define __Pyx_sst_abs(value) ((value<0) ? -value : value))
#define __Pyx_sst_abs(value) ((value<0) ? -value : value)
#endif
static CYTHON_INLINE char* __Pyx_PyObject_AsString(PyObject*);
......
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