summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorPierre Weis <Pierre.Weis@inria.fr>2009-12-09 09:52:47 +0000
committerPierre Weis <Pierre.Weis@inria.fr>2009-12-09 09:52:47 +0000
commit758e4cd86078a89af5790872f9704c5ea019b4e7 (patch)
tree9a428a9eca676a232b10f3f428d2026d17088b94 /utils
parent341d13f27964c0a45d9cafae560c71bcc79f7816 (diff)
downloadocaml-758e4cd86078a89af5790872f9704c5ea019b4e7.tar.gz
Using -strict-sequence to compile the compiler.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9467 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'utils')
-rw-r--r--utils/tbl.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/tbl.mli b/utils/tbl.mli
index 71c348efae..21c89b04fe 100644
--- a/utils/tbl.mli
+++ b/utils/tbl.mli
@@ -22,7 +22,7 @@ val add: 'a -> 'b -> ('a, 'b) t -> ('a, 'b) t
val find: 'a -> ('a, 'b) t -> 'b
val mem: 'a -> ('a, 'b) t -> bool
val remove: 'a -> ('a, 'b) t -> ('a, 'b) t
-val iter: ('a -> 'b -> 'c) -> ('a, 'b) t -> unit
+val iter: ('a -> 'b -> unit) -> ('a, 'b) t -> unit
val map: ('a -> 'b -> 'c) -> ('a, 'b) t -> ('a, 'c) t
open Format