summaryrefslogtreecommitdiff
path: root/internal/gc.h
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2024-02-26 11:21:09 -0500
committerPeter Zhu <[email protected]>2024-02-26 17:05:34 -0500
commit78ae6dbb11c1c6881ac599c3b91edaf0df4d7938 (patch)
treeda6fe67b72cac7374889d6c02f89f149d18a1297 /internal/gc.h
parent7538703d1b69e5f3be04240f387dfbcb1f4e2d91 (diff)
Remove rb_objspace_marked_object_p
rb_objspace_marked_object_p is no longer used in the objspace module, so we can remove it.
Diffstat (limited to 'internal/gc.h')
-rw-r--r--internal/gc.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/gc.h b/internal/gc.h
index df5e4d8a3b..325a95f4b4 100644
--- a/internal/gc.h
+++ b/internal/gc.h
@@ -264,7 +264,6 @@ void rb_objspace_reachable_objects_from(VALUE obj, void (func)(VALUE, void *), v
void rb_objspace_reachable_objects_from_root(void (func)(const char *category, VALUE, void *), void *data);
int rb_objspace_markable_object_p(VALUE obj);
int rb_objspace_internal_object_p(VALUE obj);
-int rb_objspace_marked_object_p(VALUE obj);
void rb_objspace_each_objects(
int (*callback)(void *start, void *end, size_t stride, void *data),