1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

util.c: constify

* util.c (scan_digits): constify readonly table.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-07-01 14:44:31 +00:00
parent ba3dc473c4
commit 2fef15145c

2
util.c
View file

@ -58,7 +58,7 @@ ruby_scan_hex(const char *start, size_t len, size_t *retlen)
static unsigned long
scan_digits(const char *str, int base, size_t *retlen, int *overflow)
{
static signed char table[] = {
static const signed char table[] = {
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/*0*/ -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
/*1*/ -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,