summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-15 10:32:58 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-15 10:32:58 +0000
commitb5e89e44f12a6e3a42e9515d1d3705d11f9442bf (patch)
treee1fb1a0cd6b9fe28df591c9cbed4e9a4c7fdd4d3 /internal.h
parent85691b9578fae7de871fba8084e4c35205b441e9 (diff)
* array.c (rb_ary_tmp_new): added.
This function creates internal use only array (which is completely hided by ObjectSpace.each_object) with filling nil. Otherwise, it can be incldues strange VALUEs. * internal.h: added. * node.h: use rb_ary_tmp_new_fill() for MEMO. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index cc7daa82fa..9eea77753d 100644
--- a/internal.h
+++ b/internal.h
@@ -506,6 +506,7 @@ struct vtm; /* defined by timev.h */
VALUE rb_ary_last(int, const VALUE *, VALUE);
void rb_ary_set_len(VALUE, long);
void rb_ary_delete_same(VALUE, VALUE);
+VALUE rb_ary_tmp_new_fill(long capa);
/* bignum.c */
VALUE rb_big_fdiv(VALUE x, VALUE y);