diff options
Diffstat (limited to 'main')
-rw-r--r-- | main/compile.dcl | 2 | ||||
-rw-r--r-- | main/compile.icl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/compile.dcl b/main/compile.dcl index 83ffb37..5e18ac8 100644 --- a/main/compile.dcl +++ b/main/compile.dcl @@ -21,4 +21,4 @@ compile :: ![{#Char}] !*DclCache !*Files -> (!Bool,!*DclCache,!*Files) heaps::!.Heaps }; -empty_cache :: *SymbolTable -> *DclCache +empty_cache :: !*SymbolTable -> *DclCache diff --git a/main/compile.icl b/main/compile.icl index b61146f..9fc53dc 100644 --- a/main/compile.icl +++ b/main/compile.icl @@ -115,7 +115,7 @@ InitialCoclOptions = heaps::!.Heaps }; -empty_cache :: *SymbolTable -> *DclCache +empty_cache :: !*SymbolTable -> *DclCache empty_cache symbol_heap # heaps = {hp_var_heap = newHeap, hp_expression_heap = newHeap, hp_type_heaps = {th_vars = newHeap, th_attrs = newHeap}, hp_generic_heap = newHeap} # (predef_symbols, hash_table) = buildPredefinedSymbols (newHashTable symbol_heap) |