mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
fix: missing type annotation for specializing int.compare
This commit is contained in:
parent
f7327197fe
commit
3236d3c8b9
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ type 'a sequence = ('a -> unit) -> unit
|
|||
|
||||
let equal (a:int) b = Pervasives.(=) a b
|
||||
|
||||
let compare a b = compare a b
|
||||
let compare (a:int) b = compare a b
|
||||
|
||||
let hash i = i land max_int
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue