diff options
| author | Maxime Dénès | 2017-11-03 11:00:27 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-11-03 11:00:27 +0100 |
| commit | 96a8d73edaa4eba500c440e5d6869fae1af91a12 (patch) | |
| tree | a4122ffc69ae991fc0b878af791338a5e91737ce /lib/store.ml | |
| parent | 87f3278ea3520ed2b2a4b355765392550488c1df (diff) | |
| parent | c8533911300df8d4897a3109ea30d43be7f430eb (diff) | |
Merge PR #6051: Fix FIXME: use OCaml 4.02 generative functors when available.
Diffstat (limited to 'lib/store.ml')
| -rw-r--r-- | lib/store.ml | 6 |
1 files changed, 1 insertions, 5 deletions
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 = |
