From c8533911300df8d4897a3109ea30d43be7f430eb Mon Sep 17 00:00:00 2001 From: Gaƫtan Gilbert Date: Wed, 1 Nov 2017 15:01:37 +0100 Subject: Fix FIXME: use OCaml 4.02 generative functors when available. 4.02.3 has been the minimal OCaml version for a while now. --- lib/store.ml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/store.ml') diff --git a/lib/store.ml b/lib/store.ml index a1788f7da9..97a8fea085 100644 --- a/lib/store.ml +++ b/lib/store.ml @@ -14,10 +14,6 @@ stores, we might want something static to avoid troubles with plugins order. *) -module type T = -sig -end - module type S = sig type t @@ -30,7 +26,7 @@ sig val field : unit -> 'a field end -module Make (M : T) : S = +module Make () : S = struct let next = -- cgit v1.2.3