Skip to content

Commit 6f6a1d9

Browse files
committed
Remove commented out function in darray.h
1 parent 504a426 commit 6f6a1d9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

darray.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@
4848
#define rb_darray_append_without_gc(ptr_to_ary, element) \
4949
rb_darray_append_impl(ptr_to_ary, element, rb_darray_realloc_mul_add_without_gc)
5050

51-
//#define rb_darray_clear_and_free_without_gc(ptr_to_ary) \
52-
//rb_darray_size(ptr_to_ary) ? (rb_darray_free_without_gc(ptr_to_ary)) : (void)0
53-
54-
5551
#define rb_darray_append_impl(ptr_to_ary, element, realloc_func) do { \
5652
rb_darray_ensure_space((ptr_to_ary), \
5753
sizeof(**(ptr_to_ary)), \

0 commit comments

Comments
 (0)