From 96aa0c2a8fc63976d1f28af6a0681a749b8b2bde Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 29 Nov 2005 14:57:18 +0000 Subject: * parse.y (struct parser_params): heap must be placed at same offset also in ripper.y. fixed: [ruby-dev:27846] * parse.y (yycompile): prevent vparser from tail call optimization. fixed: [ruby-dev:27851] * parse.y (parser_mark): value needs to be marked. fixed: [ruby-dev:27845] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'node.h') diff --git a/node.h b/node.h index 659ab4350b..5022ac0995 100644 --- a/node.h +++ b/node.h @@ -353,9 +353,9 @@ typedef struct RNode { VALUE rb_parser_new(void); VALUE rb_parser_end_seen_p(VALUE); -NODE *rb_parser_compile_cstr(volatile VALUE, const char*, const char*, int, int); -NODE *rb_parser_compile_string(volatile VALUE, const char*, VALUE, int); -NODE *rb_parser_compile_file(volatile VALUE, const char*, VALUE, int); +NODE *rb_parser_compile_cstr(VALUE, const char*, const char*, int, int); +NODE *rb_parser_compile_string(VALUE, const char*, VALUE, int); +NODE *rb_parser_compile_file(VALUE, const char*, VALUE, int); NODE *rb_compile_cstr(const char*, const char*, int, int); NODE *rb_compile_string(const char*, VALUE, int); -- cgit v1.2.1