Skip to content

Commit

Permalink
Resolve conflicts in bytecomp and file_formats mlis
Browse files Browse the repository at this point in the history
  • Loading branch information
ncik-roberts committed Oct 19, 2023
1 parent e4c6ddd commit 7af50ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
10 changes: 2 additions & 8 deletions bytecomp/bytelink.mli
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ open Misc

(* Link .cmo files and produce a bytecode executable. *)

module Dep : Set.OrderedType with type t = modname * modname
module Dep : Set.OrderedType with type t = string * string
module DepSet : Set.S with type elt = Dep.t

val link : filepath list -> filepath -> unit
Expand All @@ -38,14 +38,8 @@ type error =
| Cannot_open_dll of filepath
| Required_module_unavailable of string * Compilation_unit.t
| Camlheader of string * filepath
<<<<<<< HEAD
| Wrong_link_order of (string * string) list
||||||| merged common ancestors
| Wrong_link_order of (modname * modname) list
=======
| Wrong_link_order of DepSet.t
| Multiple_definition of modname * filepath * filepath
>>>>>>> ocaml/5.1
| Multiple_definition of string * filepath * filepath

exception Error of error

Expand Down
6 changes: 0 additions & 6 deletions file_formats/cmt_format.mli
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,7 @@ val save_cmt :
binary_annots ->
string option -> (* source file *)
Env.t -> (* initial env *)
<<<<<<< HEAD
Cmi_format.cmi_infos_lazy option -> (* if a .cmi was generated *)
||||||| merged common ancestors
Cmi_format.cmi_infos option -> (* if a .cmi was generated *)
=======
Cmi_format.cmi_infos option -> (* if a .cmi was generated *)
>>>>>>> ocaml/5.1
Shape.t option ->
unit

Expand Down

0 comments on commit 7af50ad

Please sign in to comment.