diff options
author | johnvg | 2004-04-02 11:55:52 +0000 |
---|---|---|
committer | johnvg | 2004-04-02 11:55:52 +0000 |
commit | 151787c7d37982e21eb9b79583108d8261766401 (patch) | |
tree | 4ea7b8f334aaf53b5c94050db9698219cf1c2dd8 /main/compile.icl | |
parent | export strictness of tuple of <:: and writeType (diff) |
export strictness of argument of empty_cache
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1482 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main/compile.icl')
-rw-r--r-- | main/compile.icl | 2 |
1 files changed, 1 insertions, 1 deletions
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) |