bugfix: forgot to exporte {Set.Map}.OrderedType in Containers

This commit is contained in:
Simon Cruanes 2015-12-10 20:32:06 +01:00
parent d946b8a159
commit 24d9213cae

View file

@ -79,7 +79,10 @@ module List = struct
include List include List
include CCList include CCList
end end
module Map = CCMap module Map = struct
module type OrderedType = Map.OrderedType
include CCMap
end
module Option = CCOpt module Option = CCOpt
module Pair = CCPair module Pair = CCPair
module Random = struct module Random = struct
@ -87,7 +90,10 @@ module Random = struct
include CCRandom include CCRandom
end end
module Ref = CCRef module Ref = CCRef
module Set = CCSet module Set = struct
module type OrderedType = Set.OrderedType
include CCSet
end
module String = struct module String = struct
include String include String
include CCString include CCString