Commit c77e7a4f authored by Benjamin Peterson's avatar Benjamin Peterson

only define zero constant when it is used

parent ce68c19e
...@@ -22,7 +22,9 @@ ...@@ -22,7 +22,9 @@
static const double ln2 = 6.93147180559945286227E-01; static const double ln2 = 6.93147180559945286227E-01;
static const double two_pow_m28 = 3.7252902984619141E-09; /* 2**-28 */ static const double two_pow_m28 = 3.7252902984619141E-09; /* 2**-28 */
static const double two_pow_p28 = 268435456.0; /* 2**28 */ static const double two_pow_p28 = 268435456.0; /* 2**28 */
#ifndef Py_NAN
static const double zero = 0.0; static const double zero = 0.0;
#endif
/* acosh(x) /* acosh(x)
* Method : * Method :
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment