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

ruby-changes:17066

From: naruse <ko1@a...>
Date: Sat, 21 Aug 2010 20:13:23 +0900 (JST)
Subject: [ruby-changes:17066] Ruby:r29064 (trunk): * vm.c: add missing prototype of rb_iseq_clone for r29063.

naruse	2010-08-21 20:10:24 +0900 (Sat, 21 Aug 2010)

  New Revision: 29064

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29064

  Log:
    * vm.c: add missing prototype of rb_iseq_clone for r29063.

  Modified files:
    trunk/ChangeLog
    trunk/vm.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29063)
+++ ChangeLog	(revision 29064)
@@ -1,3 +1,7 @@
+Sat Aug 21 20:09:43 2010  NARUSE, Yui  <naruse@r...>
+
+	* vm.c: add missing prototype of rb_iseq_clone for r29063.
+
 Sat Aug 21 18:54:56 2010  wanabe  <s.wanabe@g...>
 
 	* vm.c (vm_define_method): copy iseq to avoid overwriting iseq->klass.
Index: vm.c
===================================================================
--- vm.c	(revision 29063)
+++ vm.c	(revision 29064)
@@ -1835,6 +1835,8 @@
     return self;
 }
 
+VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
+
 static void
 vm_define_method(rb_thread_t *th, VALUE obj, ID id, VALUE iseqval,
 		 rb_num_t is_singleton, NODE *cref)

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

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