diff options
author | ronny | 2002-01-18 12:47:17 +0000 |
---|---|---|
committer | ronny | 2002-01-18 12:47:17 +0000 |
commit | c3bf9b37aaf5a58082f748f8ab83a4d7c5ca42fa (patch) | |
tree | 7c6abf99f4bd499efb39f4abe42d43a087c561fa | |
parent | added a constructor and a destructor function for type string which contains (diff) |
removed unused undefined record field, to make the module compilable with Clean 2
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@970 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | frontend/transform.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/transform.icl b/frontend/transform.icl index d20de28..f583bca 100644 --- a/frontend/transform.icl +++ b/frontend/transform.icl @@ -1502,7 +1502,7 @@ expandMacrosInBody fi_calls {cb_args,cb_rhs} fi_dynamics predef_symbols_for_tran = removeFunctionCallsFromSymbolTable all_calls es.es_fun_defs es.es_symbol_table ((merged_rhs, _), es_var_heap, es_symbol_heap, es_error) = mergeCases rhs rhss es.es_var_heap es.es_symbol_heap es.es_error - (new_rhs, new_args, local_vars, {cos_error, cos_var_heap, cos_symbol_heap, cos_used_dynamics}) + (new_rhs, new_args, local_vars, {cos_error, cos_var_heap, cos_symbol_heap}) = determineVariablesAndRefCounts cb_args merged_rhs { cos_error = es_error, cos_var_heap = es_var_heap, cos_symbol_heap = es_symbol_heap, cos_predef_symbols_for_transform = predef_symbols_for_transform } |