Skip to content

Commit

Permalink
refactor(pkg): stop qualifying stdune in sat (#11285)
Browse files Browse the repository at this point in the history
Signed-off-by: Rudi Grinberg <[email protected]>
  • Loading branch information
rgrinberg authored Jan 13, 2025
1 parent 0a31353 commit 8cf2fce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/0install-solver/sat.ml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module Make (User : USER) = struct
@return a list of literals which caused the problem by all being True. *)
calc_reason_for : lit -> lit list
; (* For debugging *)
pp : Stdune.User_message.Style.t Pp.t >
pp : User_message.Style.t Pp.t >

(** The reason why a literal is set. *)
and reason =
Expand Down Expand Up @@ -629,7 +629,7 @@ module Make (User : USER) = struct
(* Ensure no duplicates *)
if List.length (remove_duplicates lits) <> List.length lits
then
Stdune.User_error.raise
User_error.raise
[ Pp.text "at_most_one(" ++ pp_lits lits ++ Pp.paragraph "): duplicates in list!"
];
(* Ignore any literals already known to be False.
Expand Down

0 comments on commit 8cf2fce

Please sign in to comment.