aboutsummaryrefslogtreecommitdiff
path: root/lib/cMap.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-03-05 20:51:27 +0100
committerPierre-Marie Pédrot2014-03-05 20:54:44 +0100
commite967151588b48911caf5bc687d87b586e95e0513 (patch)
tree312885d530d1a156cd37689fae3e5939cb1c9766 /lib/cMap.ml
parent4e5747adfd7b5c83cac2c4bb242d85fd3cb6fdd0 (diff)
Fixing compilation on OCaml 4.01.
Diffstat (limited to 'lib/cMap.ml')
-rw-r--r--lib/cMap.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cMap.ml b/lib/cMap.ml
index 42a4111b1a..2d95681f81 100644
--- a/lib/cMap.ml
+++ b/lib/cMap.ml
@@ -17,7 +17,7 @@ module type S = Map.S
module type ExtS =
sig
include Map.S
- module Set : Set.S with type elt = key
+ module Set : CSig.SetS with type elt = key
val update : key -> 'a -> 'a t -> 'a t
val modify : key -> (key -> 'a -> 'a) -> 'a t -> 'a t
val domain : 'a t -> Set.t