From ce19b495d19bbaf415b05b10377788cb4b87d937 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 15 Jun 2016 06:26:52 +0000 Subject: date_core.c: remove assert * ext/date/date_core.c (decode_jd): do not assert type of argument. just try to convert. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/date/date_core.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'ext') diff --git a/ext/date/date_core.c b/ext/date/date_core.c index caf2b936d8..12240d7457 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -1360,10 +1360,8 @@ encode_year(VALUE nth, int y, double style, static void decode_jd(VALUE jd, VALUE *nth, int *rjd) { - assert(RB_INTEGER_TYPE_P(jd)); *nth = f_idiv(jd, INT2FIX(CM_PERIOD)); if (f_zero_p(*nth)) { - assert(FIXNUM_P(jd)); *rjd = FIX2INT(jd); return; } -- cgit v1.2.3