aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/declarations.mli
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-09-23 16:00:49 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2015-10-02 15:54:10 +0200
commitcc69a4697633e14fc00c9bd0858b38120645464b (patch)
tree6a589f6916cf85bbc008ef3db788db8b90056278 /kernel/declarations.mli
parentff4d0d98ab0e0e81bd1acf9a7bf4b64913834911 (diff)
Univs: module constraints move to universe contexts as they might
declare new universes (e.g. with).
Diffstat (limited to 'kernel/declarations.mli')
-rw-r--r--kernel/declarations.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/declarations.mli b/kernel/declarations.mli
index 561c66b42..7def963e7 100644
--- a/kernel/declarations.mli
+++ b/kernel/declarations.mli
@@ -246,8 +246,8 @@ and module_body =
mod_type : module_signature; (** expanded type *)
(** algebraic type, kept if it's relevant for extraction *)
mod_type_alg : module_expression option;
- (** set of all constraints in the module *)
- mod_constraints : Univ.constraints;
+ (** set of all universes constraints in the module *)
+ mod_constraints : Univ.ContextSet.t;
(** quotiented set of equivalent constants and inductive names *)
mod_delta : Mod_subst.delta_resolver;
mod_retroknowledge : Retroknowledge.action list }