aboutsummaryrefslogtreecommitdiff
path: root/kernel/entries.ml
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/entries.ml')
-rw-r--r--kernel/entries.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/entries.ml b/kernel/entries.ml
index 28f11c9af4..a4485fac7f 100644
--- a/kernel/entries.ml
+++ b/kernel/entries.ml
@@ -56,12 +56,13 @@ type mutual_inductive_entry = {
type definition_entry = {
const_entry_body : constr;
+ const_entry_secctx : section_context option;
const_entry_type : types option;
const_entry_opaque : bool }
type inline = int option (* inlining level, None for no inlining *)
-type parameter_entry = types * inline
+type parameter_entry = section_context option * types * inline
type constant_entry =
| DefinitionEntry of definition_entry