diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2018-03-09 20:16:08 +0100 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2018-03-09 20:16:08 +0100 |
commit | 1f2a922d52251f79a11d75c2205e6827a07e591b (patch) | |
tree | 2f8bedc06474b905f22e763a0b1cc66f3d46d9c3 /library | |
parent | 6ba4733a32812e04e831d081737c5665fb12a152 (diff) | |
parent | 426c9afeb9c85616b89c26aabfe9a6d8cc37c8f0 (diff) |
Merge PR #6775: Allow using cumulativity without forcing strict constraints.
Diffstat (limited to 'library')
-rw-r--r-- | library/globnames.ml | 2 | ||||
-rw-r--r-- | library/globnames.mli | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/globnames.ml b/library/globnames.ml index 8b1a51377..2fa3adba2 100644 --- a/library/globnames.ml +++ b/library/globnames.ml @@ -15,7 +15,7 @@ open Mod_subst open Libnames (*s Global reference is a kernel side type for all references together *) -type global_reference = +type global_reference = Names.global_reference = | VarRef of variable (** A reference to the section-context. *) | ConstRef of Constant.t (** A reference to the environment. *) | IndRef of inductive (** A reference to an inductive type. *) diff --git a/library/globnames.mli b/library/globnames.mli index 017b7386d..f2b88b870 100644 --- a/library/globnames.mli +++ b/library/globnames.mli @@ -14,7 +14,7 @@ open Constr open Mod_subst (** {6 Global reference is a kernel side type for all references together } *) -type global_reference = +type global_reference = Names.global_reference = | VarRef of variable (** A reference to the section-context. *) | ConstRef of Constant.t (** A reference to the environment. *) | IndRef of inductive (** A reference to an inductive type. *) |