From ae4af95b223bc4173cd0a88f1b60cf2fdf09e4da Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 20 Aug 2009 03:09:08 +0000 Subject: * parse.y (ivar2_hash_type): disabled for now. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 6084bcaa8..0e99a120f 100644 --- a/parse.y +++ b/parse.y @@ -9152,8 +9152,10 @@ static struct symbols { ID last_id; st_table *sym_id; st_table *id_str; +#if ENABLE_SELECTOR_NAMESPACE st_table *ivar2_id; st_table *id_ivar2; +#endif VALUE op_sym[tLAST_TOKEN]; } global_symbols = {tLAST_ID}; @@ -9162,6 +9164,7 @@ static const struct st_hash_type symhash = { rb_str_hash, }; +#if ENABLE_SELECTOR_NAMESPACE struct ivar2_key { ID id; VALUE klass; @@ -9186,14 +9189,17 @@ static const struct st_hash_type ivar2_hash_type = { ivar2_cmp, ivar2_hash, }; +#endif void Init_sym(void) { global_symbols.sym_id = st_init_table_with_size(&symhash, 1000); global_symbols.id_str = st_init_numtable_with_size(1000); +#if ENABLE_SELECTOR_NAMESPACE global_symbols.ivar2_id = st_init_table_with_size(&ivar2_hash_type, 1000); global_symbols.id_ivar2 = st_init_numtable_with_size(1000); +#endif Init_id(); } -- cgit