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

ruby-changes:35889

From: nobu <ko1@a...>
Date: Thu, 16 Oct 2014 09:19:29 +0900 (JST)
Subject: [ruby-changes:35889] nobu:r47970 (trunk): cont.c: fix typedef

nobu	2014-10-16 09:19:22 +0900 (Thu, 16 Oct 2014)

  New Revision: 47970

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

  Log:
    cont.c: fix typedef
    
    * cont.c (rb_fiber_struct): remove useless typedef.
      [Feature #10341]

  Modified files:
    trunk/cont.c
Index: cont.c
===================================================================
--- cont.c	(revision 47969)
+++ cont.c	(revision 47970)
@@ -130,7 +130,7 @@ static machine_stack_cache_t machine_sta https://github.com/ruby/ruby/blob/trunk/cont.c#L130
 static machine_stack_cache_t terminated_machine_stack;
 #endif
 
-typedef struct rb_fiber_struct {
+struct rb_fiber_struct {
     rb_context_t cont;
     struct rb_fiber_struct *prev;
     enum fiber_status status;

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

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