Skip to content

Commit

Permalink
Don't use "Pervasives." to avoid OCaml 4.09 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierleroy committed Oct 29, 2019
1 parent 7107573 commit 8dc4c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@ module OASISFeatures = struct
Map.Make
(struct
type t = plugin_kind * name
let compare = Pervasives.compare
let compare = compare
end)

module Data =
Expand Down Expand Up @@ -3465,7 +3465,7 @@ module BaseEnv = struct
([], None)
(List.sort
(fun (o1, _) (o2, _) ->
Pervasives.compare o2 o1)
compare o2 o1)
lst)
in
match res, errors with
Expand Down

0 comments on commit 8dc4c36

Please sign in to comment.