aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/term.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-06-07 17:26:29 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-06-07 17:26:29 +0200
commit2fbcbeece792c2f0e235160d66014150224fe7d7 (patch)
treeff03867a1e665aca1bcb86b3cabc1cb1fc1e60cc /checker/term.ml
parent560b24f8eab0838fd6e01da8c4373f560020aadd (diff)
Removing 'open Univ' from checker.
Diffstat (limited to 'checker/term.ml')
-rw-r--r--checker/term.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/checker/term.ml b/checker/term.ml
index 0f8aa804f..3372f9b6c 100644
--- a/checker/term.ml
+++ b/checker/term.ml
@@ -11,7 +11,6 @@
open Errors
open Util
open Names
-open Univ
open Esubst
open Cic
@@ -349,7 +348,7 @@ let compare_sorts s1 s2 = match s1, s2 with
| Pos, Null -> false
| Null, Pos -> false
end
-| Type u1, Type u2 -> Universe.equal u1 u2
+| Type u1, Type u2 -> Univ.Universe.equal u1 u2
| Prop _, Type _ -> false
| Type _, Prop _ -> false