more accurate type for CCHashtbl.Make

This commit is contained in:
Simon Cruanes 2014-12-22 00:10:48 +01:00
parent 8190cbf6af
commit a1e9443e52

View file

@ -89,7 +89,8 @@ module type S = sig
(** From the given list of bindings, added in order *)
end
module Make(X : Hashtbl.HashedType) : S with type key = X.t
module Make(X : Hashtbl.HashedType) :
S with type key = X.t and type 'a t = 'a Hashtbl.Make(X).t
(** {2 Default Table}