diff options
author | Matti Picus <matti.picus@gmail.com> | 2018-06-07 11:26:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-07 11:26:58 -0700 |
commit | 70ab87a607eb201023a643fe6ec882a13f7785c3 (patch) | |
tree | 64acc757aa2cc1cbad910541231601849b9564cf /numpy | |
parent | 48fd5a0b659af50e0b6fa68d73a8dad504df4ea0 (diff) | |
parent | a70b277a1cf487b3e8225232e927414c272f3545 (diff) | |
download | numpy-70ab87a607eb201023a643fe6ec882a13f7785c3.tar.gz |
Merge pull request #11269 from charris/fix-unused-variable
BUG: Correct use of NPY_UNUSED.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/npymath/ieee754.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/npymath/ieee754.c.src b/numpy/core/src/npymath/ieee754.c.src index fcfd15ab4..ea1792887 100644 --- a/numpy/core/src/npymath/ieee754.c.src +++ b/numpy/core/src/npymath/ieee754.c.src @@ -798,7 +798,7 @@ int npy_clear_floatstatus_barrier(char *param) #else -int npy_get_floatstatus_barrier(char NPY_UNUSED(*param)) +int npy_get_floatstatus_barrier(char *NPY_UNUSED(param)) { return 0; } |