]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/components/extlib/patternMatcher.ml
Porting to ocaml 5
[helm.git] / matita / components / extlib / patternMatcher.ml
index fa8c6061ecc92ecbf767b7fef39e651a8aece27a..4e3e75fa560234aca5d7577219b0df9775e08b22 100644 (file)
@@ -33,7 +33,7 @@ type pattern_id = int
 module OrderedInt =
 struct
   type t = int
-  let compare (x1:t) (x2:t) = Pervasives.compare x2 x1  (* reverse order *)
+  let compare (x1:t) (x2:t) = Stdlib.compare x2 x1  (* reverse order *)
 end
 
 module IntSet = Set.Make (OrderedInt)