From 8754b2391bae6e2e18b35fdcf614ff312f77a088 Mon Sep 17 00:00:00 2001 From: mrkn Date: Sun, 23 Dec 2018 18:32:01 +0000 Subject: Import bigdecimal-1.4.0 * https://github.com/ruby/bigdecimal/compare/v1.4.0.pre.20181220a..v1.4.0 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/bigdecimal/bigdecimal.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'ext/bigdecimal/bigdecimal.c') diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 052fdc57b9..da1b24a631 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -2668,7 +2668,7 @@ BigDecimal_new(int argc, VALUE *argv) } /* call-seq: - * BigDecimal(initial, digits) + * BigDecimal(initial, digits, exception: true) * * Create a new BigDecimal object. * @@ -2682,8 +2682,13 @@ BigDecimal_new(int argc, VALUE *argv) * the number of significant digits is determined from the initial * value. * - * The actual number of significant digits used in computation is usually - * larger than the specified number. + * The actual number of significant digits used in computation is + * usually larger than the specified number. + * + * exception:: Whether an exception should be raised on invalid arguments. + * +true+ by default, if passed +false+, just returns +nil+ + * for invalid. + * * * ==== Exceptions * @@ -3955,9 +3960,6 @@ VP_EXPORT size_t VpInit(BDIGIT BaseVal) { /* Setup +/- Inf NaN -0 */ - VpGetDoubleNaN(); - VpGetDoublePosInf(); - VpGetDoubleNegInf(); VpGetDoubleNegZero(); /* Allocates Vp constants. */ -- cgit v1.2.3