From 5a647a3f5fd011f8558c7f9e90cd65e70e73eb40 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 9 Jun 2008 09:25:32 +0000 Subject: * include/ruby/ruby.h (CONST_ID): constant ID cache for non-gcc. * *.c: no cache in init functions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compar.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compar.c') diff --git a/compar.c b/compar.c index 55b217a60a..b028a256ec 100644 --- a/compar.c +++ b/compar.c @@ -198,6 +198,8 @@ cmp_between(VALUE x, VALUE min, VALUE max) void Init_Comparable(void) { +#undef rb_intern + rb_mComparable = rb_define_module("Comparable"); rb_define_method(rb_mComparable, "==", cmp_equal, 1); rb_define_method(rb_mComparable, ">", cmp_gt, 1); -- cgit v1.2.3