diff options
| author | Emilio Jesus Gallego Arias | 2019-03-04 18:09:24 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-03-04 18:09:24 +0100 |
| commit | 78b3b96d1ca2c2811cee2ca4202c154177d943a2 (patch) | |
| tree | c9a79487dcd2d13f3b5c92a0d39edffed0979610 /lib/future.ml | |
| parent | 11d1c70ce0747d03c849df1362119d4ccaccb443 (diff) | |
| parent | e6cc52efca8c7395aaa828500e908fc8a0489e52 (diff) | |
Merge PR #8700: Removing debugging warning when no exception handler is registered in futures
Ack-by: ejgallego
Diffstat (limited to 'lib/future.ml')
| -rw-r--r-- | lib/future.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/future.ml b/lib/future.ml index b372bedc5d..6e7c6fd9e3 100644 --- a/lib/future.ml +++ b/lib/future.ml @@ -33,7 +33,7 @@ let _ = CErrors.register_handler (function | _ -> raise CErrors.Unhandled) type fix_exn = Exninfo.iexn -> Exninfo.iexn -let id x = prerr_endline "Future: no fix_exn.\nYou have probably created a Future.computation from a value without passing the ~fix_exn argument. You probably want to chain with an already existing future instead."; x +let id x = x module UUID = struct type t = int |
