aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-29 08:25:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-29 08:25:49 +0000
commit23d8fe4215eb63fd7734851f786a76ef8540c381 (patch)
tree5e5b58ad564b018b23cf4631b3a70a2009721891 /string.c
parent3718ecb04ba1c01d3c7e71b2bf75ac0d67d8cb09 (diff)
downloadruby-23d8fe4215eb63fd7734851f786a76ef8540c381.tar.gz
hash.c: move rb_obj_hash
* hash.c (rb_obj_hash): move in order to share with rb_any_hash. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/string.c b/string.c
index 026ebd7147..2001724642 100644
--- a/string.c
+++ b/string.c
@@ -9154,8 +9154,6 @@ rb_to_symbol(VALUE name)
return rb_str_intern(name);
}
-VALUE rb_sym_hash(VALUE);
-
/*
* A <code>String</code> object holds and manipulates an arbitrary sequence of
* bytes, typically representing characters. String objects may be created
@@ -9318,7 +9316,6 @@ Init_String(void)
rb_undef_method(CLASS_OF(rb_cSymbol), "new");
rb_define_singleton_method(rb_cSymbol, "all_symbols", rb_sym_all_symbols, 0); /* in symbol.c */
- rb_define_method(rb_cSymbol, "hash", rb_sym_hash, 0); /* in hash.c */
rb_define_method(rb_cSymbol, "==", sym_equal, 1);
rb_define_method(rb_cSymbol, "===", sym_equal, 1);
rb_define_method(rb_cSymbol, "inspect", sym_inspect, 0);