summaryrefslogtreecommitdiff
path: root/rational.c
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-12 13:13:44 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-12 13:13:44 +0000
commit75fbac3b0db735de6ff72b171096855b5ded77d4 (patch)
tree77fbb6e5bcb2ff40de4c04636dd995a6bc7c35b4 /rational.c
parent02a37bee67dd3a38fe5fa143fd27e59b563ebb0c (diff)
* complex.c, rational.c: do not use RUBY_VERSION_CODE.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rational.c')
-rw-r--r--rational.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/rational.c b/rational.c
index ac28822bdd..4b6e2ea0ca 100644
--- a/rational.c
+++ b/rational.c
@@ -377,18 +377,17 @@ f_rational_new_bang2(VALUE klass, VALUE x, VALUE y)
return nurat_s_new_internal(klass, x, y);
}
-#define RUBY_VERSION_CODE 0
-
-#if RUBY_VERSION_CODE < 200
#define CANON
-#endif
-
#ifdef CANON
static int canonicalization = 0;
void
nurat_canonicalize(int f)
{
+ VALUE s = rb_const_get(rb_cObject, rb_intern("RUBY_VERSION"));
+ Check_Type(s, T_STRING);
+ if (rb_str_cmp(s, rb_str_new2("2.0.0")) >= 0)
+ rb_bug("no longer provide canonicalization");
canonicalization = f;
}
#endif