stage3/fill_candidate_datatypes.cc
changeset 972 bc90dd4bbf4f
parent 965 c9eeb67ba939
child 994 66dc2ef40e70
--- a/stage3/fill_candidate_datatypes.cc	Fri Dec 26 09:57:02 2014 +0000
+++ b/stage3/fill_candidate_datatypes.cc	Fri Dec 26 10:09:27 2014 +0000
@@ -90,8 +90,7 @@
  */
 /* NOTE: we do not store any NULL values in this symbol table, so we can safely use NULL and the null value. */
 
-symbol_c null_enumvalue_symbol; /* cannot be static, so it may be used in the template!! */
-typedef dsymtable_c<symbol_c *, &null_enumvalue_symbol> enumerated_value_symtable_t;
+typedef dsymtable_c<symbol_c *> enumerated_value_symtable_t;
 static enumerated_value_symtable_t global_enumerated_value_symtable;
  
  
@@ -1052,8 +1051,8 @@
 				enumerated_type = symbol->type; 
 	}
 	else {
-		symbol_c *global_enumerated_type = global_enumerated_value_symtable.find_value  (symbol->value);
-		symbol_c * local_enumerated_type =  local_enumerated_value_symtable.find_value  (symbol->value);
+		symbol_c *global_enumerated_type = global_enumerated_value_symtable.find (symbol->value)->second;
+		symbol_c * local_enumerated_type =  local_enumerated_value_symtable.find (symbol->value)->second;
 		int       global_multiplicity    = global_enumerated_value_symtable.count(symbol->value);
 		int        local_multiplicity    =  local_enumerated_value_symtable.count(symbol->value);