fix warnings

This commit is contained in:
Simon Cruanes 2023-11-07 20:48:04 -05:00
parent 62e8336d84
commit 989c012f77
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ let rec fib ~on x : int Fut.t =
Atomic.incr n_calls_fib_direct;
fib_direct x)
else
let open Fut.Infix_local in
let open Fut.Infix in
let+ t1 = fib ~on (x - 1) and+ t2 = fib ~on (x - 2) in
t1 + t2

View file

@ -27,7 +27,7 @@ let () =
Q.(small_list small_int)
(fun l ->
let@ pool = with_pool ~kind () in
let open Fut.Infix_local in
let open Fut.Infix in
let l' =
l
|> List.map (fun x ->