summaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-05 12:47:48 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-05 12:47:48 +0000
commitc39c1fddca792e141f1b7504ed2401b3e9f7bdbb (patch)
treef94c41a22473dcf0904ddfa15ba1b1ccb8105d4b /st.c
parent78b29b3b5930bdf7495cb34a5b3722121a045c29 (diff)
downloadruby-c39c1fddca792e141f1b7504ed2401b3e9f7bdbb.tar.gz
ruby-c39c1fddca792e141f1b7504ed2401b3e9f7bdbb.tar.xz
ruby-c39c1fddca792e141f1b7504ed2401b3e9f7bdbb.zip
* st.c (st_reverse_foreach): comment out unused function.
* util.c (dtoa): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/st.c b/st.c
index 0090f28e5..5ddb6d9d2 100644
--- a/st.c
+++ b/st.c
@@ -686,6 +686,7 @@ st_foreach(st_table *table, int (*func)(ANYARGS), st_data_t arg)
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 @@ st_reverse_foreach(st_table *table, int (*func)(ANYARGS), st_data_t arg)
}
return 0;
}
+#endif
/*
* hash_32 - 32 bit Fowler/Noll/Vo FNV-1a hash code