diff options
author | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-26 15:48:25 +0000 |
---|---|---|
committer | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-26 15:48:25 +0000 |
commit | 079fb8d4c369cfc7d450d6e4d02b112596dcb5ee (patch) | |
tree | 96248be4d9cb5747abd8dde11d35c1cde1b5f40b /ext/bigdecimal/lib/bigdecimal/util.rb | |
parent | 2fd6b26620b1f9e25f204f05524b8086f7c8d23e (diff) |
* ext/bigdecimal/lib/bigdecimal/util.rb (Float#to_d): modified for
specifying precision. fixes #5098. [ruby-dev:44210]
* test/bigdecimal/test_bigdecimal_util.rb: add test for the above
change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32679 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/bigdecimal/lib/bigdecimal/util.rb')
-rw-r--r-- | ext/bigdecimal/lib/bigdecimal/util.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bigdecimal/lib/bigdecimal/util.rb b/ext/bigdecimal/lib/bigdecimal/util.rb index 1ec39a30ee..1e4bbbb596 100644 --- a/ext/bigdecimal/lib/bigdecimal/util.rb +++ b/ext/bigdecimal/lib/bigdecimal/util.rb @@ -27,8 +27,8 @@ class Float < Numeric # 0.5.to_d # # => #<BigDecimal:1dc69e0,'0.5E0',9(18)> # - def to_d - BigDecimal(self.to_s) + def to_d(precision=nil) + BigDecimal(self, precision || Float::DIG+1) end end |