From b5de461a49fc5a4fcaa122d6f3ca5c3fa338105b Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 29 Sep 2014 02:20:56 +0000 Subject: date_core.c: revert const * ext/date/date_core.c (SimpleDateData, ComplexDateData): revert const for aggregation assignments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/date/date_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/date') diff --git a/ext/date/date_core.c b/ext/date/date_core.c index 7a4a418a1f..835120631a 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -235,7 +235,7 @@ f_negative_p(VALUE x) struct SimpleDateData { unsigned flags; - const VALUE nth; /* not always canonicalized */ + VALUE nth; /* not always canonicalized */ int jd; /* as utc */ /* df is zero */ /* sf is zero */ @@ -258,10 +258,10 @@ struct SimpleDateData struct ComplexDateData { unsigned flags; - const VALUE nth; /* not always canonicalized */ + VALUE nth; /* not always canonicalized */ int jd; /* as utc */ int df; /* as utc, in secs */ - const VALUE sf; /* in nano secs */ + VALUE sf; /* in nano secs */ int of; /* in secs */ date_sg_t sg; /* 2298874..2426355 or -/+oo -- at most 22 bits */ /* decoded as local */ -- cgit v1.2.3