diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-05-25 08:08:13 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-05-25 08:08:13 -0700 |
commit | a02457f1d76dc6727f2118f2d129ce3a5261c253 (patch) | |
tree | 555dfa12cbc685ea54440f842348164bab1630d2 /numpy/core/src/scalarmathmodule.c.src | |
parent | e11cd9b028051659a852b7e8daa150f082d42c5a (diff) | |
parent | cf574923b764e477a6b748c3620c99c9fadf44e9 (diff) | |
download | numpy-a02457f1d76dc6727f2118f2d129ce3a5261c253.tar.gz |
Merge pull request #3362 from juliantaylor/compiler-warnings
MAINT: fix some compiler warnings
Diffstat (limited to 'numpy/core/src/scalarmathmodule.c.src')
-rw-r--r-- | numpy/core/src/scalarmathmodule.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/scalarmathmodule.c.src b/numpy/core/src/scalarmathmodule.c.src index b87d9b405..11716dd46 100644 --- a/numpy/core/src/scalarmathmodule.c.src +++ b/numpy/core/src/scalarmathmodule.c.src @@ -1381,7 +1381,7 @@ NONZERO_NAME(@name@_)(PyObject *a) static int -emit_complexwarning() +emit_complexwarning(void) { static PyObject *cls = NULL; if (cls == NULL) { |