ruby-changes:5343
From: mame <ko1@a...>
Date: Thu, 5 Jun 2008 21:48:12 +0900 (JST)
Subject: [ruby-changes:5343] Ruby:r16844 (trunk): * st.c (st_reverse_foreach): comment out unused function.
mame 2008-06-05 21:47:48 +0900 (Thu, 05 Jun 2008) New Revision: 16844 Modified files: trunk/ChangeLog trunk/st.c trunk/util.c Log: * st.c (st_reverse_foreach): comment out unused function. * util.c (dtoa): ditto. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=16844&r2=16843&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/util.c?r1=16844&r2=16843&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/st.c?r1=16844&r2=16843&diff_format=u Index: ChangeLog =================================================================== --- ChangeLog (revision 16843) +++ ChangeLog (revision 16844) @@ -1,3 +1,9 @@ +Thu Jun 5 21:46:50 2008 Yusuke Endoh <mame@t...> + + * st.c (st_reverse_foreach): comment out unused function. + + * util.c (dtoa): ditto. + Thu Jun 5 20:30:46 2008 Akinori MUSHA <knu@i...> * ext/openssl/ossl_ssl_session.c (ossl_ssl_session_initialize): Index: st.c =================================================================== --- st.c (revision 16843) +++ st.c (revision 16844) @@ -686,6 +686,7 @@ return 0; } +#if 0 /* unused right now */ int st_reverse_foreach(st_table *table, int (*func)(ANYARGS), st_data_t arg) { @@ -767,6 +768,7 @@ } return 0; } +#endif /* * hash_32 - 32 bit Fowler/Noll/Vo FNV-1a hash code Index: util.c =================================================================== --- util.c (revision 16843) +++ util.c (revision 16844) @@ -3265,6 +3265,7 @@ * calculation. */ +#if 0 /* unused right now */ char * dtoa(double d, int mode, int ndigits, int *decpt, int *sign, char **rve) { @@ -3934,6 +3935,7 @@ *rve = s; return s0; } +#endif void ruby_each_words(const char *str, void (*func)(const char*, int, void*), void *arg) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/