diff options
author | Jean Boussier <[email protected]> | 2025-05-08 20:17:09 +0200 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2025-05-09 10:22:51 +0200 |
commit | 3f7c0af05191c6120db1617fef1d5be18151dfe6 (patch) | |
tree | 71e00eadbb496572bba83ffde26bd6895b07c463 /shape.c | |
parent | 677d075c2901198aad2f17b7d9f07af021c5e974 (diff) |
Rename `rb_shape_obj_too_complex` -> `rb_shape_obj_too_complex_p`
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13283
Diffstat (limited to 'shape.c')
-rw-r--r-- | shape.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1110,7 +1110,7 @@ rb_shape_rebuild_shape(rb_shape_t *initial_shape, rb_shape_t *dest_shape) } RUBY_FUNC_EXPORTED bool -rb_shape_obj_too_complex(VALUE obj) +rb_shape_obj_too_complex_p(VALUE obj) { return rb_shape_too_complex_p(rb_shape_get_shape(obj)); } |