From 62b4c459ac89e64861b9bc75f275e31c19085ade Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 6 Jul 2016 14:11:20 +0000 Subject: merge revision(s) 54168: [Backport #12391] * bignum.c (rb_big_hash): make it public function to be available in other source files, and remove documentation comment for Bignum#hash. * bignum.c (Bignum#hash): remove its definition because it is unified with Object#hash. * include/ruby/intern.h (rb_big_hash): add a prototype declaration. * hash.c (any_hash): treat Bignum values directly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@55598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index 95dc6ca2cd..32c801afd0 100644 --- a/bignum.c +++ b/bignum.c @@ -6780,16 +6780,7 @@ rb_big_aref(VALUE x, VALUE y) return (xds[s1] & bit) ? INT2FIX(1) : INT2FIX(0); } -/* - * call-seq: - * big.hash -> fixnum - * - * Compute a hash based on the value of _big_. - * - * See also Object#hash. - */ - -static VALUE +VALUE rb_big_hash(VALUE x) { st_index_t hash; @@ -7028,7 +7019,6 @@ Init_Bignum(void) rb_define_method(rb_cBignum, "<=", big_le, 1); rb_define_method(rb_cBignum, "===", rb_big_eq, 1); rb_define_method(rb_cBignum, "eql?", rb_big_eql, 1); - rb_define_method(rb_cBignum, "hash", rb_big_hash, 0); rb_define_method(rb_cBignum, "to_f", rb_big_to_f, 0); rb_define_method(rb_cBignum, "abs", rb_big_abs, 0); rb_define_method(rb_cBignum, "magnitude", rb_big_abs, 0); -- cgit v1.2.3