diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-01 02:32:17 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-01 02:32:17 +0000 |
commit | d07be4d4f51e57f20daae9b00038bc6becb0e62c (patch) | |
tree | b8beee53741aa357eef0b130b9d69338833d33c4 | |
parent | 4df356656c6d76350eaf4430413bf8c95eb94f54 (diff) | |
download | ruby-d07be4d4f51e57f20daae9b00038bc6becb0e62c.tar.gz ruby-d07be4d4f51e57f20daae9b00038bc6becb0e62c.tar.xz ruby-d07be4d4f51e57f20daae9b00038bc6becb0e62c.zip |
* numeric.c (num_round): should convert self to Float.
[ruby-dev:30860]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | numeric.c | 6 |
2 files changed, 6 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Fri Jun 1 11:33:40 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * numeric.c (num_round): should convert self to Float. + [ruby-dev:30860] + Fri Jun 1 02:01:13 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * numeric.c (flo_round): now takes optional argument to specify @@ -1343,11 +1343,7 @@ num_ceil(VALUE num) static VALUE num_round(int argc, VALUE* argv, VALUE num) { - VALUE nd; - - rb_scan_args(argc, argv, "01", &nd); - nd = rb_Float(nd); - return flo_round(argc, &nd, num); + return flo_round(argc, argv, rb_Float(num)); } /* |