summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-04-10 14:08:57 -0600
committerGitHub <noreply@github.com>2019-04-10 14:08:57 -0600
commit3257586ec441c2e234c40c4c074ce240935c3e0b (patch)
treee69e017fbc7b5cccb1a5773b606985e1c9e28282
parent412975de43e6c5e4b6f1051f3a04968c629240c7 (diff)
parentcc10cddde24091a396c34bdcee5da081fee40200 (diff)
downloadnumpy-3257586ec441c2e234c40c4c074ce240935c3e0b.tar.gz
Merge pull request #13291 from rgommers/fix-warning
MAINT: fix unused variable warning in npy_math_complex.c.src
-rw-r--r--numpy/core/src/npymath/npy_math_complex.c.src5
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/core/src/npymath/npy_math_complex.c.src b/numpy/core/src/npymath/npy_math_complex.c.src
index cf427dad8..7aa07f16d 100644
--- a/numpy/core/src/npymath/npy_math_complex.c.src
+++ b/numpy/core/src/npymath/npy_math_complex.c.src
@@ -1430,19 +1430,14 @@ npy_casinh@c@(@ctype@ z)
#if @precision@ == 1
/* this is sqrt(6*EPS) */
const npy_float SQRT_6_EPSILON = 8.4572793338e-4f;
- /* chosen such that pio2_hi + pio2_lo == pio2_hi but causes FE_INEXACT. */
- const volatile npy_float pio2_lo = 7.5497899549e-9f;
#endif
#if @precision@ == 2
const npy_double SQRT_6_EPSILON = 3.65002414998885671e-08;
- const volatile npy_double pio2_lo = 6.1232339957367659e-17;
#endif
#if @precision@ == 3
const npy_longdouble SQRT_6_EPSILON = 8.0654900873493277169e-10l;
- const volatile npy_longdouble pio2_lo = 2.710505431213761085e-20l;
#endif
const @type@ RECIP_EPSILON = 1.0@c@ / @TEPS@;
- const @type@ pio2_hi = NPY_PI_2@c@;
@type@ x, y, ax, ay, wx, wy, rx, ry, B, sqrt_A2my2, new_y;
npy_int B_is_usable;