зеркало из https://github.com/github/ruby.git
* rational.c (nurat_to_f): C99.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
f778691dfa
Коммит
3aede677ba
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Mar 21 06:44:59 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* rational.c (nurat_to_f): C99.
|
||||||
|
|
||||||
Fri Mar 21 01:40:27 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
Fri Mar 21 01:40:27 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||||
|
|
||||||
* complex.c (nucomp_sub, nucomp_expt): call corresponding functions.
|
* complex.c (nucomp_sub, nucomp_expt): call corresponding functions.
|
||||||
|
|
|
@ -1102,12 +1102,12 @@ i_ilog2(VALUE x)
|
||||||
static VALUE
|
static VALUE
|
||||||
nurat_to_f(VALUE self)
|
nurat_to_f(VALUE self)
|
||||||
{
|
{
|
||||||
get_dat1(self);
|
|
||||||
VALUE num, den;
|
VALUE num, den;
|
||||||
int minus = 0;
|
int minus = 0;
|
||||||
long nl, dl, ml, ne, de;
|
long nl, dl, ml, ne, de;
|
||||||
int e;
|
int e;
|
||||||
double f;
|
double f;
|
||||||
|
get_dat1(self);
|
||||||
|
|
||||||
if (f_zero_p(dat->num))
|
if (f_zero_p(dat->num))
|
||||||
return rb_float_new(0.0);
|
return rb_float_new(0.0);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче