[前][次][番号順一覧][スレッド一覧]

ruby-changes:58856

From: =E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3 <ko1@a...>
Date: Wed, 20 Nov 2019 15:54:26 +0900 (JST)
Subject: [ruby-changes:58856] 7608baf92a (master): re-add function prototypes

https://git.ruby-lang.org/ruby.git/commit/?id=7608baf92a

From 7608baf92ae2f3b29786e7fca021c8c8d24016f8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?=
 <shyouhei@r...>
Date: Wed, 20 Nov 2019 15:51:10 +0900
Subject: re-add function prototypes

This commit reverts a part of 0e8219f591f3f17cb7ee361e8a60dbef08145883
which broke icc.  See also https://rubyci.org/logs/rubyci.s3.amazonaws.com/icc-x64/ruby-master/log/20191120T010006Z.fail.html.gz

diff --git a/internal.h b/internal.h
index 79c4fd6..2399fc9 100644
--- a/internal.h
+++ b/internal.h
@@ -2390,6 +2390,11 @@ const char *rb_objspace_data_type_name(VALUE obj); https://github.com/ruby/ruby/blob/trunk/internal.h#L2390
 /* 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);
+VALUE *rb_ary_ptr_use_start(VALUE ary);
+void rb_ary_ptr_use_end(VALUE ary);
+
 /* bignum.c (export) */
 VALUE rb_big_mul_normal(VALUE x, VALUE y);
 VALUE rb_big_mul_balance(VALUE x, VALUE y);
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]