summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-04 08:05:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-04 08:05:17 +0000
commit4e7be0083c5288c28a432c8ca65f0a8e91462a64 (patch)
treee0a4f561ddb529bea9d481d5e208f32774744118
parent663b3bbb3c702c0581629b66641c9c0249944e8c (diff)
downloadruby-4e7be0083c5288c28a432c8ca65f0a8e91462a64.tar.gz
ruby-4e7be0083c5288c28a432c8ca65f0a8e91462a64.tar.xz
ruby-4e7be0083c5288c28a432c8ca65f0a8e91462a64.zip
* include/ruby/intern.h (RB_NUM_COERCE_FUNCS_NEED_OPID): macro to
check compatibility. [ruby-dev:38162] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--include/ruby/intern.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c8832dec..4cf0ab481 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Apr 4 17:05:15 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * include/ruby/intern.h (RB_NUM_COERCE_FUNCS_NEED_OPID): macro to
+ check compatibility. [ruby-dev:38162]
+
Sat Apr 4 07:38:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* mkconfig.rb (sitearch): default to arch.
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 49a27fc74..be3a2029b 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -424,6 +424,7 @@ VALUE rb_marshal_load(VALUE);
void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE (*dumper)(VALUE), VALUE (*loader)(VALUE, VALUE));
/* numeric.c */
void rb_num_zerodiv(void);
+#define RB_NUM_COERCE_FUNCS_NEED_OPID 1
VALUE rb_num_coerce_bin(VALUE, VALUE, ID);
VALUE rb_num_coerce_cmp(VALUE, VALUE, ID);
VALUE rb_num_coerce_relop(VALUE, VALUE, ID);