diff options
author | John Hawthorn <john@hawthorn.email> | 2025-07-04 12:02:18 -0700 |
---|---|---|
committer | John Hawthorn <john@hawthorn.email> | 2025-07-04 14:54:49 -0700 |
commit | 12b0ce3875806f7f6a14f3d92cedb132bb57f6b4 (patch) | |
tree | e60d334563cb9d52d9d54ca7f78ddc139d260d46 /shape.h | |
parent | 8cd583269428bf0f83b474ea7718715ce96f441b (diff) |
Remove unused src param from rb_shape_copy_fields
Diffstat (limited to 'shape.h')
-rw-r--r-- | shape.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,7 +217,7 @@ shape_id_t rb_shape_object_id(shape_id_t original_shape_id); void rb_shape_free_all(void); shape_id_t rb_shape_rebuild(shape_id_t initial_shape_id, shape_id_t dest_shape_id); -void rb_shape_copy_fields(VALUE dest, VALUE *dest_buf, shape_id_t dest_shape_id, VALUE src, VALUE *src_buf, shape_id_t src_shape_id); +void rb_shape_copy_fields(VALUE dest, VALUE *dest_buf, shape_id_t dest_shape_id, VALUE *src_buf, shape_id_t src_shape_id); void rb_shape_copy_complex_ivars(VALUE dest, VALUE obj, shape_id_t src_shape_id, st_table *fields_table); static inline bool |