aboutsummaryrefslogtreecommitdiff
path: root/lib/spawn.ml
diff options
context:
space:
mode:
authorMaxime Dénès2017-11-03 11:00:27 +0100
committerMaxime Dénès2017-11-03 11:00:27 +0100
commit96a8d73edaa4eba500c440e5d6869fae1af91a12 (patch)
treea4122ffc69ae991fc0b878af791338a5e91737ce /lib/spawn.ml
parent87f3278ea3520ed2b2a4b355765392550488c1df (diff)
parentc8533911300df8d4897a3109ea30d43be7f430eb (diff)
Merge PR #6051: Fix FIXME: use OCaml 4.02 generative functors when available.
Diffstat (limited to 'lib/spawn.ml')
-rw-r--r--lib/spawn.ml4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/spawn.ml b/lib/spawn.ml
index 0cf163e737..de31d87d0e 100644
--- a/lib/spawn.ml
+++ b/lib/spawn.ml
@@ -28,8 +28,6 @@ module type Control = sig
end
-module type Empty = sig end
-
module type MainLoopModel = sig
type async_chan
type condition
@@ -216,7 +214,7 @@ let rec wait p =
end
-module Sync(T : Empty) = struct
+module Sync () = struct
type process = {
cin : in_channel;