diff options
author | Aaron Patterson <[email protected]> | 2019-11-06 16:29:09 -0800 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2019-11-06 16:31:55 -0800 |
commit | d0d743ad4558a572769f0f11ece11fda068652b3 (patch) | |
tree | 0d9958dc912561b3249d23696dfb04a50439a7d5 /include/ruby/intern.h | |
parent | e58814d150b0652f5e11958b36b85d977fdd0426 (diff) |
Remove duplicate code
These functions are the same, so remove one.
Co-authored-by: John Hawthorn <[email protected]>
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r-- | include/ruby/intern.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index b9471a7097..e53b4e607c 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -532,10 +532,9 @@ PUREFUNC(int rb_during_gc(void)); void rb_gc_mark_locations(const VALUE*, const VALUE*); void rb_mark_tbl(struct st_table*); void rb_mark_tbl_no_pin(struct st_table*); -void rb_gc_update_tbl_refs(st_table *ptr); void rb_mark_set(struct st_table*); void rb_mark_hash(struct st_table*); -void rb_update_st_references(struct st_table *ht); +void rb_gc_update_tbl_refs(st_table *ptr); void rb_gc_mark_maybe(VALUE); void rb_gc_mark(VALUE); void rb_gc_mark_movable(VALUE); |