Commit 99a8baf7 authored by Robert Bradshaw's avatar Robert Bradshaw

Suppress unreachable code warning on clang.

parent 4bb5a33e
...@@ -859,7 +859,7 @@ bad: ...@@ -859,7 +859,7 @@ bad:
#else #else
// fake call purely to work around "unused function" warning for __Pyx_ImportModule() // fake call purely to work around "unused function" warning for __Pyx_ImportModule()
static int __Pyx_RegisterCleanup(void) { static int __Pyx_RegisterCleanup(void) {
if (0) __Pyx_ImportModule(NULL); if ((0)) __Pyx_ImportModule(NULL);
return 0; return 0;
} }
#endif #endif
......
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