* ext/date/date_core.c (valid_jd_sub): need to convert from VALUE to

double.

* ext/date/date_core.c (offset_to_sec): get rid of a compiler warning.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2011-06-06 05:12:17 +00:00
Родитель f0bd1c2174
Коммит 3c9e6c7abb
2 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,10 @@
Mon Jun 6 14:11:11 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/date/date_core.c (valid_jd_sub): need to convert from VALUE to
double.
* ext/date/date_core.c (offset_to_sec): get rid of a compiler warning.
Mon Jun 6 14:09:08 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* include/ruby/defines.h (rb_inifinity, rb_nan): export for Windows.

Просмотреть файл

@ -2241,7 +2241,7 @@ offset_to_sec(VALUE vof, int *rof)
n = NUM2DBL(vof) * DAY_IN_SECONDS;
if (n < -DAY_IN_SECONDS || n > DAY_IN_SECONDS)
return 0;
*rof = round(n);
*rof = (int)round(n);
if (*rof != n)
rb_warning("fraction of offset is ignored");
return 1;
@ -2303,7 +2303,8 @@ offset_to_sec(VALUE vof, int *rof)
static VALUE
valid_jd_sub(int argc, VALUE *argv, VALUE klass, int need_jd)
{
valid_sg(argv[1]);
double sg = NUM2DBL(argv[1]);
valid_sg(sg);
return argv[0];
}