Skip to content

Commit

Permalink
OCaml 5.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate committed May 15, 2024
1 parent eaa397e commit a1cfb46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/miou.ml
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ module Domain = struct
k (Operation.return trigger)
| Trigger.Await _ -> k Operation.interrupt
| Yield -> k Operation.yield
| effect -> k (Operation.perform effect)
| eff -> k (Operation.perform eff)
in
{ perform }

Expand Down
2 changes: 1 addition & 1 deletion lib/miou_state.ml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let handler_continue =
let open Effect.Shallow in
let effc :
type c. c Effect.t -> ((c, 'a) Effect.Shallow.continuation -> 'b) option =
fun effect -> Some (effc effect)
fun eff -> Some (effc eff)
in
{ retc; exnc; effc }

Expand Down

0 comments on commit a1cfb46

Please sign in to comment.