summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-10 23:59:10 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-10 23:59:10 +0000
commit9d98662882739be9869e2b3b403ead1a5ed131b6 (patch)
treed9acb921489af16566c18cb0c9322b87575678f9 /ext
parent98c1419191edfa475438dffe8dae9766eec29613 (diff)
downloadruby-9d98662882739be9869e2b3b403ead1a5ed131b6.tar.gz
ruby-9d98662882739be9869e2b3b403ead1a5ed131b6.tar.xz
ruby-9d98662882739be9869e2b3b403ead1a5ed131b6.zip
* ext/bigdecimal/bigdecimal.c (BigDecimal_coerce): support
coercing into Rational. [ruby-core:23415] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/bigdecimal/bigdecimal.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index 0abc00ab6..2f4b9ada3 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -675,11 +675,16 @@ BigDecimal_coerce(VALUE self, VALUE other)
ENTER(2);
VALUE obj;
Real *b;
- if(TYPE(other) == T_FLOAT) {
- obj = rb_assoc_new(other, BigDecimal_to_f(self));
- } else {
- GUARD_OBJ(b,GetVpValue(other,1));
- obj = rb_assoc_new(b->obj, self);
+ switch (TYPE(other)) {
+ case T_FLOAT:
+ obj = rb_assoc_new(other, BigDecimal_to_f(self));
+ break;
+ case T_RATIONAL:
+ obj = rb_assoc_new(other, BigDecimal_to_r(self));
+ break;
+ default:
+ GUARD_OBJ(b,GetVpValue(other,1));
+ obj = rb_assoc_new(b->obj, self);
}
return obj;
}