diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-05 01:06:49 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-05 01:06:49 +0000 |
commit | ba563e4a410eb8f01709cc2f37a42361f5998311 (patch) | |
tree | a254794a8cd36c4f85f6aca7a555455cecc85203 /regparse.c | |
parent | 151d11b5b12b0dc9222e93c8e1c668ccd15d931d (diff) | |
download | ruby-ba563e4a410eb8f01709cc2f37a42361f5998311.tar.gz |
* include/ruby/st.h, st.c (st_init_table, st_init_table_with_size):
constified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12693 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regparse.c')
-rw-r--r-- | regparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regparse.c b/regparse.c index 1d669212d5..f924f1dfff 100644 --- a/regparse.c +++ b/regparse.c @@ -312,7 +312,7 @@ typedef struct { static int strend_cmp(st_strend_key*, st_strend_key*); static int strend_hash(st_strend_key*); -static struct st_hash_type type_strend_hash = { +static const struct st_hash_type type_strend_hash = { strend_cmp, strend_hash, }; @@ -4736,7 +4736,7 @@ static int type_cclass_hash(type_cclass_key* key) return val + (val >> 5); } -static struct st_hash_type type_type_cclass_hash = { +static const struct st_hash_type type_type_cclass_hash = { type_cclass_cmp, type_cclass_hash, }; |