diff options
author | Koichi Sasada <[email protected]> | 2020-10-14 16:59:31 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2020-10-17 08:18:04 +0900 |
commit | 91ec5f9e39cf54dd7a157addb778293853571f13 (patch) | |
tree | b2d339fba747ceb22dcab3eda91b3ff1ac5f5ae7 /object.c | |
parent | ff9dc109665e515da8b544a55085bb793063adf1 (diff) |
remove rb_obj_iv_index_tbl
(1) nobody uses it (gem-codesearch)
(2) the data strucuture will be changed.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3662
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -320,14 +320,6 @@ rb_obj_singleton_class(VALUE obj) return rb_singleton_class(obj); } -struct st_table * -rb_obj_iv_index_tbl(const struct RObject *obj) -{ - /* This is a function that practically never gets used. Just to keep - * backwards compatibility to ruby 2.x. */ - return ROBJECT_IV_INDEX_TBL((VALUE)obj); -} - /*! \private */ MJIT_FUNC_EXPORTED void rb_obj_copy_ivar(VALUE dest, VALUE obj) |