Skip to content

Commit 8918c88

Browse files
committed
fix: use Stdlib for compat with recent versions of OCaml
1 parent b3d9572 commit 8918c88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bottom_up_cli/datalog_cli.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ let handle_goal db lit =
5656
try
5757
let a = int_of_string (DSym.to_string a)
5858
and b = int_of_string (DSym.to_string b) in
59-
Pervasives.compare a b
59+
Stdlib.compare a b
6060
with Invalid_argument _ -> compare a b
6161
in
6262
match (DLogic.open_literal lit :> string * DLogic.term list) with

0 commit comments

Comments
 (0)