diff options
author | Peter Zhu <[email protected]> | 2025-02-12 13:22:18 -0500 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2025-02-12 14:03:07 -0500 |
commit | 16f41eca53ec43763c63a830e50ca72324dc9c79 () | |
tree | d80baa763e927d2ef4028b09e710c217bf7786b8 /include | |
parent | f32d5071b7b01f258eb45cf533496d82d5c0f6a1 (diff) |
Remove dead iv_index_tbl field in RObject
Notes: Merged: https://.com/ruby/ruby/pull/12739
-rw-r--r-- | include/ruby/internal/core/robject.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -95,16 +95,6 @@ struct RObject { struct { /** Pointer to a C array that holds instance variables. */ VALUE *ivptr; - - /** - * This is a table that holds instance variable name to index - * mapping. Used when accessing instance variables using names. - * - * @internal - * - * This is a shortcut for `RCLASS_IV_INDEX_TBL(rb_obj_class(obj))`. - */ - struct rb_id_table *iv_index_tbl; } heap; /* Embedded instance variables. When an object is small enough, it |