aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/sorts.ml
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sorts.ml')
-rw-r--r--kernel/sorts.ml11
1 files changed, 5 insertions, 6 deletions
diff --git a/kernel/sorts.ml b/kernel/sorts.ml
index 7ab6b553a..88c99683e 100644
--- a/kernel/sorts.ml
+++ b/kernel/sorts.ml
@@ -51,13 +51,12 @@ module Hsorts =
type t = _t
type u = universe -> universe
let hashcons huniv = function
- Prop c -> Prop c
| Type u -> Type (huniv u)
- let equal s1 s2 =
- match (s1,s2) with
- (Prop c1, Prop c2) -> c1 == c2
- | (Type u1, Type u2) -> u1 == u2
- |_ -> false
+ | s -> s
+ let equal s1 s2 = match (s1,s2) with
+ | (Prop c1, Prop c2) -> c1 == c2
+ | (Type u1, Type u2) -> u1 == u2
+ |_ -> false
let hash = Hashtbl.hash
end)