From 728afecc5549dec604e2ad9933ed99154e47c491 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 3 Nov 2018 11:20:54 +0000 Subject: [PATCH] expose `rb_ary_detransient`. * internal.h: expose `rb_ary_detransient`. I'm not sure why there are no many troubles without this patch... git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65515 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- internal.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal.h b/internal.h index 800c092049..e5f578dde0 100644 --- a/internal.h +++ b/internal.h @@ -2132,6 +2132,9 @@ const char *rb_objspace_data_type_name(VALUE obj); /* Temporary. This API will be removed (renamed). */ VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, int fd); +/* array.c (export) */ +void rb_ary_detransient(VALUE a); + /* bignum.c (export) */ VALUE rb_big_mul_normal(VALUE x, VALUE y); VALUE rb_big_mul_balance(VALUE x, VALUE y);