summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-01 23:04:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-01 23:04:46 +0000
commit432768449deaf044574506d689ca049c4fc796e7 (patch)
treef4e7cb8c3edb5ff65540f088184c273fdb67f91f /time.c
parentfc5f0cafa1473547e0961bb4187752107cf5e3de (diff)
* time.c (num_exact): rb_check_to_integer() can deal with both of
Fixnum and Bignum together. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/time.c b/time.c
index 95c64a8b8d..99aae6ae13 100644
--- a/time.c
+++ b/time.c
@@ -160,14 +160,11 @@ num_exact(VALUE v)
case T_NIL:
goto typeerror;
- default:
- {
+ default: {
VALUE tmp;
if (!NIL_P(tmp = rb_check_convert_type(v, T_RATIONAL, "Rational", "to_r")))
v = tmp;
- else if (!NIL_P(tmp = rb_check_convert_type(v, T_FIXNUM, "Integer", "to_int")))
- v = tmp;
- else if (!NIL_P(tmp = rb_check_convert_type(v, T_BIGNUM, "Integer", "to_int")))
+ else if (!NIL_P(tmp = rb_check_to_integer(v, "to_int")))
v = tmp;
else {
typeerror: