From 0d8956725284206788bae5fbd6ed032f186ad366 Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 23 Nov 2007 07:00:50 +0000 Subject: * struct.c (rb_struct_alloc_noinit): new function. (rb_struct_define_without_accessor): add allocator to the arguments. * range.c (range_alloc): re-introduced using rb_struct_alloc_noinit. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/intern.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 7af65d414f..20ba6ef55b 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -542,7 +542,8 @@ VALUE rb_struct_getmember(VALUE, ID); VALUE rb_struct_iv_get(VALUE, const char*); VALUE rb_struct_s_members(VALUE); VALUE rb_struct_members(VALUE); -VALUE rb_struct_define_without_accessor(char *, VALUE, ...); +VALUE rb_struct_alloc_noinit(VALUE); +VALUE rb_struct_define_without_accessor(char *, VALUE, rb_alloc_func_t, ...); /* thread.c */ typedef void rb_unblock_function_t(void *); typedef VALUE rb_blocking_function_t(void *); -- cgit v1.2.3