aboutsummaryrefslogtreecommitdiff
path: root/src/common.mli
diff options
context:
space:
mode:
authorpacien2018-05-01 01:25:56 +0200
committerpacien2018-05-01 01:25:56 +0200
commit58e4fa622c441a9b832f0656580204a9f5b23e1d (patch)
tree397e59434685ea3393eb51baea7f6961eec17f46 /src/common.mli
parent37716a32c9aadcca83746bf96bf32b552fa55847 (diff)
downloadurm-58e4fa622c441a9b832f0656580204a9f5b23e1d.tar.gz
Do not reuse Hashtables
Diffstat (limited to 'src/common.mli')
-rw-r--r--src/common.mli3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common.mli b/src/common.mli
index 16ffc87..250a804 100644
--- a/src/common.mli
+++ b/src/common.mli
@@ -43,7 +43,8 @@ type urm = {
43 43
44type state = { 44type state = {
45 max_reg : int; 45 max_reg : int;
46 label_count : int 46 label_count : int;
47 label_table : (string, int) Hashtbl.t
47} 48}
48 49
49exception Syntax_error 50exception Syntax_error