aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-19 08:05:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-19 08:05:26 +0000
commitc4b74dbbdbaebcc8f0ecde531d9a3b15561d28ef (patch)
tree01b6fe7e8c6defa289079e6b6b4a287a1a5fad28 /bignum.c
parent5bbd4e03c3a096769d592a1211fe2a74a8d69ec2 (diff)
downloadruby-c4b74dbbdbaebcc8f0ecde531d9a3b15561d28ef.tar.gz
deprecate Fixnum and Bignum
* numeric.c (Init_Numeric), bignum.c (Init_Bignum): deprecate Fixnum and Bignum. this may be reverted after previews. [Feature #12739] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56187 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bignum.c b/bignum.c
index 741fa2d21e..ca06c54b3e 100644
--- a/bignum.c
+++ b/bignum.c
@@ -6781,6 +6781,7 @@ Init_Bignum(void)
rb_cBignum = rb_cInteger;
#endif
rb_define_const(rb_cObject, "Bignum", rb_cInteger);
+ rb_deprecate_constant(rb_cObject, "Bignum");
rb_define_method(rb_cInteger, "coerce", rb_int_coerce, 1);