aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authormrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-19 09:28:12 +0000
committermrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-19 09:28:12 +0000
commit81f65a9e054ddcdf2d1a8507e516672dd8c7324e (patch)
tree6b6ce7ab2c9ab3be6004b00ddd8e78c6f7c192b2 /bignum.c
parentbc343b851d04f68ef7554a2cca0bad63a32c2b7d (diff)
downloadruby-81f65a9e054ddcdf2d1a8507e516672dd8c7324e.tar.gz
* bignum.c (Bignum#<=>): remove it because they are unified with
Integer#<=>. * numeric.c (Integer#<=>, Fixnum#<=>): move <=> method from Fixnum to Integer. * numeric.c (int_cmp): add this method for Integer#<=>. * test/-ext-/integer/test_my_integer.rb (test_my_integer_cmp): add a test to examine Integer#<=> for unknown subclasses. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 2c241d1c56..450385ce3e 100644
--- a/bignum.c
+++ b/bignum.c
@@ -7011,7 +7011,6 @@ Init_Bignum(void)
rb_define_method(rb_cBignum, ">>", rb_big_rshift, 1);
rb_define_method(rb_cBignum, "[]", rb_big_aref, 1);
- rb_define_method(rb_cBignum, "<=>", rb_big_cmp, 1);
rb_define_method(rb_cBignum, "==", rb_big_eq, 1);
rb_define_method(rb_cBignum, ">", big_gt, 1);
rb_define_method(rb_cBignum, ">=", big_ge, 1);