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

ruby-changes:30021

From: ko1 <ko1@a...>
Date: Fri, 19 Jul 2013 22:00:35 +0900 (JST)
Subject: [ruby-changes:30021] ko1:r42073 (trunk): * gc.c: declare type_name() at the beggining of file.

ko1	2013-07-19 22:00:23 +0900 (Fri, 19 Jul 2013)

  New Revision: 42073

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

  Log:
    * gc.c: declare type_name() at the beggining of file.

  Modified files:
    trunk/ChangeLog
    trunk/gc.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 42072)
+++ ChangeLog	(revision 42073)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Jul 19 21:59:12 2013  Koichi Sasada  <ko1@a...>
+
+	* gc.c: declare type_name() at the beggining of file.
+
 Fri Jul 19 21:35:09 2013  Koichi Sasada  <ko1@a...>
 
 	* array.c: reduce shady operations.
Index: gc.c
===================================================================
--- gc.c	(revision 42072)
+++ gc.c	(revision 42073)
@@ -550,6 +550,7 @@ static inline void gc_prof_set_heap_info https://github.com/ruby/ruby/blob/trunk/gc.c#L550
 
 #define rgengc_report if (RGENGC_DEBUG) rgengc_report_body
 static void rgengc_report_body(int level, rb_objspace_t *objspace, const char *fmt, ...);
+static const char * type_name(int type, VALUE obj);
 static const char *obj_type_name(VALUE obj);
 
 #if USE_RGENGC

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

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