From 5199f2aaf9527c97e6ec371e19748d0c2ac7a70e Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 19 Apr 2023 15:59:25 -0400 Subject: Implement Hash AR tables on VWA --- transient_heap.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'transient_heap.h') diff --git a/transient_heap.h b/transient_heap.h index 4ac52aad07..6c6141f71a 100644 --- a/transient_heap.h +++ b/transient_heap.h @@ -42,7 +42,6 @@ int rb_transient_heap_managed_ptr_p(const void *ptr); /* evacuate functions for each type */ void rb_ary_transient_heap_evacuate(VALUE ary, int promote); void rb_obj_transient_heap_evacuate(VALUE obj, int promote); -void rb_hash_transient_heap_evacuate(VALUE hash, int promote); void rb_struct_transient_heap_evacuate(VALUE st, int promote); #else /* USE_TRANSIENT_HEAP */ @@ -58,7 +57,6 @@ void rb_struct_transient_heap_evacuate(VALUE st, int promote); #define rb_ary_transient_heap_evacuate(x, y) ((void)0) #define rb_obj_transient_heap_evacuate(x, y) ((void)0) -#define rb_hash_transient_heap_evacuate(x, y) ((void)0) #define rb_struct_transient_heap_evacuate(x, y) ((void)0) #endif /* USE_TRANSIENT_HEAP */ -- cgit v1.2.1