aboutsummaryrefslogtreecommitdiff
path: root/frontend/hashtable.icl
diff options
context:
space:
mode:
authorjohnvg2004-04-02 11:54:09 +0000
committerjohnvg2004-04-02 11:54:09 +0000
commit3d5ecf72822184a21b97f4ce66f386cc6dcb23ce (patch)
tree833d56e102a4681fe8e9aa754bfb2d0079f53d68 /frontend/hashtable.icl
parentdon't overwrite first byte of next node in the heap with a '\0' (diff)
export strictness of argument of newHashTable
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1480 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/hashtable.icl')
-rw-r--r--frontend/hashtable.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/hashtable.icl b/frontend/hashtable.icl
index a50c393..1e0aefc 100644
--- a/frontend/hashtable.icl
+++ b/frontend/hashtable.icl
@@ -26,7 +26,7 @@ import predef, syntax, StdCompare, compare_constructor
:: BoxedIdent = {boxed_ident::!Ident}
-newHashTable :: *SymbolTable -> *HashTable
+newHashTable :: !*SymbolTable -> *HashTable
newHashTable symbol_heap = { hte_symbol_heap = symbol_heap, hte_entries = { HTE_Empty \\ i <- [0 .. dec cHashTableSize] },hte_mark=0}
set_hte_mark :: !Int !*HashTable -> *HashTable