From 573772ab5b143eae7130c2dd3bc9f6f221d0c742 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 14 Mar 2015 23:34:39 +0000 Subject: [PATCH] math.c: more robust * math.c (math_gamma): make more robust against addition/removal. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- math.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/math.c b/math.c index 011581a604..a41fdb5b54 100644 --- a/math.c +++ b/math.c @@ -836,12 +836,10 @@ mingw_tgamma(const double d) * */ -#define NFACT_TABLE 23 - static VALUE math_gamma(VALUE obj, VALUE x) { - static const double fact_table[NFACT_TABLE] = { + static const double fact_table[] = { /* fact(0) */ 1.0, /* fact(1) */ 1.0, /* fact(2) */ 2.0, @@ -869,6 +867,7 @@ math_gamma(VALUE obj, VALUE x) * impossible to represent exactly in IEEE 754 double which have * 53bit mantissa. */ }; + enum {NFACT_TABLE = numberof(fact_table)}; double d; d = Get_Double(x); /* check for domain error */