aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-02 13:56:23 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-02 13:56:23 +0000
commit1d7611ff4824f8ad64b174c3850807fb83b90ea0 (patch)
treebcb476f963f01d4dc5f099fb0fbcd97646aa9f63 /bignum.c
parent5f61a592e9f560a7de63ca072ef767c1e8495be1 (diff)
downloadruby-1d7611ff4824f8ad64b174c3850807fb83b90ea0.tar.gz
* bignum.c (ISDIGIT): Unused macro removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index 472126f548..3ea2c4a4c3 100644
--- a/bignum.c
+++ b/bignum.c
@@ -3751,9 +3751,6 @@ rb_cstr_to_inum(const char *str, int base, int badcheck)
size_t num_digits;
size_t num_bdigits;
-#undef ISDIGIT
-#define ISDIGIT(c) ('0' <= (c) && (c) <= '9')
-
if (!str) {
if (badcheck) goto bad;
return INT2FIX(0);