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

ruby-changes:39869

From: nobu <ko1@a...>
Date: Sun, 27 Sep 2015 09:23:25 +0900 (JST)
Subject: [ruby-changes:39869] nobu:r51950 (trunk): id_table.c: fix prototype names

nobu	2015-09-27 09:23:18 +0900 (Sun, 27 Sep 2015)

  New Revision: 51950

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

  Log:
    id_table.c: fix prototype names
    
    * id_table.c: fix prototype names, missing underscore prefixes.

  Modified files:
    trunk/id_table.c
Index: id_table.c
===================================================================
--- id_table.c	(revision 51949)
+++ id_table.c	(revision 51950)
@@ -197,7 +197,7 @@ https://github.com/ruby/ruby/blob/trunk/id_table.c#L197
 # define UNUSED(func) static func
 #endif
 
-UNUSED(ID_TABLE_IMPL_TYPE *IMPL(create)(size_t));
+UNUSED(ID_TABLE_IMPL_TYPE *IMPL(_create)(size_t));
 UNUSED(void IMPL(_free)(ID_TABLE_IMPL_TYPE *));
 UNUSED(void IMPL(_clear)(ID_TABLE_IMPL_TYPE *));
 UNUSED(size_t IMPL(_size)(ID_TABLE_IMPL_TYPE *));

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

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