Skip to content

Commit

Permalink
fix: use Stdlib for compat with recent versions of OCaml
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Oct 16, 2024
1 parent b3d9572 commit 8918c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bottom_up_cli/datalog_cli.ml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ let handle_goal db lit =
try
let a = int_of_string (DSym.to_string a)
and b = int_of_string (DSym.to_string b) in
Pervasives.compare a b
Stdlib.compare a b
with Invalid_argument _ -> compare a b
in
match (DLogic.open_literal lit :> string * DLogic.term list) with
Expand Down

0 comments on commit 8918c88

Please sign in to comment.