summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-20 08:28:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-20 08:28:33 +0000
commitc0dba956d1bd798d2ce614dbc8573ab10bb44990 (patch)
tree320a164936a8ff648758b32db9c1a93e9511634b /object.c
parent7f3b12f05b95745ae4766e085bf2d21298e4fa1b (diff)
id.def: predefine to_i
* defs/id.def: predefine `to_i` as well as `to_int`. * numeric.c (id_to_i): use predefined `idTo_i`. * object.c (conv_method_names): add `to_i` ID. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/object.c b/object.c
index 4f360a7906..582e2e2121 100644
--- a/object.c
+++ b/object.c
@@ -2559,6 +2559,7 @@ static const struct conv_method_tbl {
M(io),
M(a),
M(s),
+ M(i),
#undef M
};
#define IMPLICIT_CONVERSIONS 7