From 1c6c4d846e0767aacc4a40c84262e477b8ecd811 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 11 Nov 2015 14:57:14 +0100 Subject: [PATCH] fix: expose type `Containers.Hashtbl.t` (#53) --- src/core/containers.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/containers.ml b/src/core/containers.ml index 62eb179d..1c527b6b 100644 --- a/src/core/containers.ml +++ b/src/core/containers.ml @@ -66,7 +66,7 @@ module Hashtbl = struct include (Hashtbl : module type of Hashtbl with type statistics = Hashtbl.statistics and module Make = Hashtbl.Make - and type ('a,'b) t := ('a,'b) Hashtbl.t + and type ('a,'b) t = ('a,'b) Hashtbl.t ) (* still unable to include CCHashtbl itself, for the polymorphic functions *) module type S' = CCHashtbl.S