aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/entries.mli
diff options
context:
space:
mode:
authorGravatar Matej Kosik <matej.kosik@inria.fr>2016-08-14 19:10:35 +0200
committerGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-25 10:52:26 +0200
commit3e6bc0e8d09e3eb913b366b4f5db280154b94018 (patch)
tree9f29b4bfa294ee8b204c860ee9eadb8bb76e03e2 /kernel/entries.mli
parent4688a3b9750827eb0f5f61066ca617efcd97bc8c (diff)
CLEANUP: Type alias "Context.section_context" was removed
Diffstat (limited to 'kernel/entries.mli')
-rw-r--r--kernel/entries.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/entries.mli b/kernel/entries.mli
index df2c4653f..b736b2113 100644
--- a/kernel/entries.mli
+++ b/kernel/entries.mli
@@ -61,7 +61,7 @@ type 'a const_entry_body = 'a proof_output Future.computation
type 'a definition_entry = {
const_entry_body : 'a const_entry_body;
(* List of section variables *)
- const_entry_secctx : Context.section_context option;
+ const_entry_secctx : Context.Named.t option;
(* State id on which the completion of type checking is reported *)
const_entry_feedback : Stateid.t option;
const_entry_type : types option;
@@ -73,7 +73,7 @@ type 'a definition_entry = {
type inline = int option (* inlining level, None for no inlining *)
type parameter_entry =
- Context.section_context option * bool * types Univ.in_universe_context * inline
+ Context.Named.t option * bool * types Univ.in_universe_context * inline
type projection_entry = {
proj_entry_ind : mutual_inductive;