diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-02-25 02:26:22 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-02-25 02:26:22 +0000 |
commit | c942417791e74428fce1ed2a722c679fca5f131e (patch) | |
tree | 069d9468528c3ecea6b0a074c62f7be9477101f9 /complex.c | |
parent | d3f73f45d8342e37a814eeb8c98e1d04f451a3b4 (diff) | |
download | ruby-c942417791e74428fce1ed2a722c679fca5f131e.tar.gz |
* rational.c (nurat_expt): use Float#** when Rational ** Float.
This fixes Rational(3,1)**3.0=>26.99999999999999 on FreeBSD.
* complex.c (rb_fexpt): removed.
Note that this function is not static but is private.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -825,14 +825,6 @@ m_exp(VALUE x) f_mul(ere, m_sin_bang(im))); } -VALUE -rb_fexpt(VALUE x, VALUE y) -{ - if (f_zero_p(x) || (!k_float_p(x) && !k_float_p(y))) - return f_expt(x, y); - return m_exp(f_mul(m_log(x), y)); -} - inline static VALUE f_reciprocal(VALUE x) { |