diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-04 10:56:49 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-04 10:56:49 +0000 |
commit | 739aadbb52ad3b35ac17919a8501cb5d565f3112 (patch) | |
tree | 87b5f42d46c7191718ad1547ea10eece4026882b | |
parent | deb5693149b537a5cf7118369443876b542aa1fb (diff) | |
download | ruby-739aadbb52ad3b35ac17919a8501cb5d565f3112.tar.gz |
ext/objspace/objspace.c: add imemo_strterm
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60641 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/objspace/objspace.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/objspace/objspace.c b/ext/objspace/objspace.c index acc6231777..247ba148b2 100644 --- a/ext/objspace/objspace.c +++ b/ext/objspace/objspace.c @@ -625,6 +625,7 @@ count_imemo_objects(int argc, VALUE *argv, VALUE self) imemo_type_ids[6] = rb_intern("imemo_ment"); imemo_type_ids[7] = rb_intern("imemo_iseq"); imemo_type_ids[8] = rb_intern("imemo_alloc"); + imemo_type_ids[9] = rb_intern("imemo_strterm"); } rb_objspace_each_objects(count_imemo_objects_i, (void *)hash); |