From: <chr...@ph...> - 2003-03-17 15:08:48
|
Dear people, When trying to compile a C extension to Numeric 23.0 the compiler complains (with a syntax error) about a semicolon in line 284 of arrayobject.h. When I remove this semicolon my application seems to run. System: Windows 2000 Visual C++ 6.0 Numeric 23.0 Python 2.2.1 Is this a typo or do I do something strange? with best regards, Christiaan Kok /* C API address pointer */ #if defined(NO_IMPORT) || defined(NO_IMPORT_ARRAY) extern void **PyArray_API; #else #if defined(PY_ARRAY_UNIQUE_SYMBOL) void **PyArray_API /* <--------------------------- semicolon here removed! */ #else static void **PyArray_API; #endif #endif |