diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-22 14:02:59 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-22 14:02:59 +0000 |
commit | 6fdbf5a8046b30fe8df18868cab9bb3352de9b75 (patch) | |
tree | c78d91f4b1e55f3d31870e6712fd33d7a5ccee02 | |
parent | 0bed6345ce53f647240bdd6895e5daecd0a48479 (diff) |
No longer subsec and isdst members
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | time.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -5090,12 +5090,6 @@ tm_initialize(int argc, VALUE *argv, VALUE tm) RSTRUCT_SET(tm, i++, INT2FIX(vtm.mday)); RSTRUCT_SET(tm, i++, INT2FIX(vtm.mon)); RSTRUCT_SET(tm, i++, vtm.year); - RSTRUCT_SET(tm, i++, INT2FIX(0)); - switch (vtm.isdst) { - case 0: RSTRUCT_SET(tm, i++, Qfalse); break; - case 1: RSTRUCT_SET(tm, i++, Qtrue); break; - default: RSTRUCT_SET(tm, i++, Qnil); break; - } RSTRUCT_SET(tm, i++, w2v(rb_time_unmagnify(t))); return tm; #endif |