···136136- #13539: Use nanosleep instead of usleep, if available.
137137 (Antonin Décimo, review by Miod Vallat and Gabriel Scherer)
138138139139+- #13606: Fix Numbers.Int_base.compare
140140+ (Mark Shinwell, review by Vincent Laviron)
141141+139142### Build system:
140143141144### Bug fixes:
+1-1
utils/numbers.ml
···1717module Int_base = Identifiable.Make (struct
1818 type t = int
19192020- let compare x y = x - y
2020+ let compare = Int.compare
2121 let output oc x = Printf.fprintf oc "%i" x
2222 let hash i = i
2323 let equal (i : int) j = i = j