From 7f7d5d0c905c982a75488c3b0c89154a5188b692 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Sat, 21 Oct 2017 13:06:36 +0000 Subject: [PATCH] node.h: Remove a not used function prototype * node.h (rb_node_newnode_longlife): The definition of this function was deleted r24490. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60265 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 1 - 1 file changed, 1 deletion(-) diff --git a/node.h b/node.h index 51aa5f1f23..0eef981bf1 100644 --- a/node.h +++ b/node.h @@ -479,7 +479,6 @@ NODE *rb_compile_string(const char*, VALUE, int); NODE *rb_compile_file(const char*, VALUE, int); NODE *rb_node_newnode(enum node_type,VALUE,VALUE,VALUE); -NODE *rb_node_newnode_longlife(enum node_type,VALUE,VALUE,VALUE); void rb_gc_free_node(VALUE obj); size_t rb_node_memsize(VALUE obj); VALUE rb_gc_mark_node(NODE *obj);