aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/term.mli
diff options
context:
space:
mode:
Diffstat (limited to 'checker/term.mli')
-rw-r--r--checker/term.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/checker/term.mli b/checker/term.mli
index 0340c79b4..c417cd14e 100644
--- a/checker/term.mli
+++ b/checker/term.mli
@@ -26,7 +26,7 @@ type 'a pcofixpoint = int * 'a prec_declaration
type cast_kind = VMcast | DEFAULTcast
type constr =
Rel of int
- | Var of identifier
+ | Var of Id.t
| Meta of metavariable
| Evar of constr pexistential
| Sort of sorts
@@ -71,7 +71,7 @@ val substnl : constr list -> int -> constr -> constr
val substl : constr list -> constr -> constr
val subst1 : constr -> constr -> constr
-type named_declaration = identifier * constr option * constr
+type named_declaration = Id.t * constr option * constr
type rel_declaration = name * constr option * constr
type named_context = named_declaration list
val empty_named_context : named_context