Skip to content

Commit

Permalink
Fix build with OCaml trunk.
Browse files Browse the repository at this point in the history
Another instance of what is detailed in
#2342 ; until
#2298 is fixed I guess we'll have
to live with commits like this.

Signed-off-by: Emilio Jesus Gallego Arias <[email protected]>
  • Loading branch information
ejgallego committed Jul 20, 2019
1 parent 6ebcb51 commit d583f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1153,8 +1153,8 @@ end = struct
| Some (ts, file) ->
(Ok ts, Ok file)
| None ->
let e = Error.no_solution_found_for_select ~loc in
(e, e)
let e () = Error.no_solution_found_for_select ~loc in
(e (), e ())
in
(res, { Resolved_select. src_fn; dst_fn = result_fn }
:: acc_selects)
Expand Down

0 comments on commit d583f51

Please sign in to comment.