diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-29 02:20:56 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-29 02:20:56 +0000 |
commit | b5de461a49fc5a4fcaa122d6f3ca5c3fa338105b (patch) | |
tree | dadb384bd57befb923ea58f5781ea102b3c5dbc1 /ext | |
parent | cedc0d1f6e76f42733769490665a5fd11f8d148e (diff) |
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
Diffstat (limited to 'ext')
-rw-r--r-- | ext/date/date_core.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |