aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/entries.mli
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-29 16:02:46 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-29 16:02:46 +0000
commit943e6b23229b5eed2fb8265089563ce0a25b9b44 (patch)
tree803aa037f3413c21e76650c62e7ea9173ba3c918 /kernel/entries.mli
parent4490dfcb94057dd6518963a904565e3a4a354bac (diff)
Merging Context and Sign.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16463 85f007b7-540e-0410-9357-904b9bb8a0f7
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 650c3566d..b2d65d3ed 100644
--- a/kernel/entries.mli
+++ b/kernel/entries.mli
@@ -50,14 +50,14 @@ type mutual_inductive_entry = {
type definition_entry = {
const_entry_body : constr;
- const_entry_secctx : Sign.section_context option;
+ const_entry_secctx : Context.section_context option;
const_entry_type : types option;
const_entry_opaque : bool;
const_entry_inline_code : bool }
type inline = int option (* inlining level, None for no inlining *)
-type parameter_entry = Sign.section_context option * types * inline
+type parameter_entry = Context.section_context option * types * inline
type constant_entry =
| DefinitionEntry of definition_entry