diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2013-05-25 10:28:07 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2013-05-25 10:38:31 +0200 |
commit | cf574923b764e477a6b748c3620c99c9fadf44e9 (patch) | |
tree | 555dfa12cbc685ea54440f842348164bab1630d2 /numpy/core/src/scalarmathmodule.c.src | |
parent | e11cd9b028051659a852b7e8daa150f082d42c5a (diff) | |
download | numpy-cf574923b764e477a6b748c3620c99c9fadf44e9.tar.gz |
MAINT: fix some compiler warnings
implicit declarations, wrong declarations, unused variables and fixes a
comparison typo bug in multiarraymodule.c
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) { |