aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/declarations.ml
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/declarations.ml')
-rw-r--r--kernel/declarations.ml7
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/declarations.ml b/kernel/declarations.ml
index 28f26a3af..f75128148 100644
--- a/kernel/declarations.ml
+++ b/kernel/declarations.ml
@@ -21,7 +21,7 @@ type constant_body = {
const_type : types;
const_hyps : section_context;
const_constraints : constraints;
- mutable const_opaque : bool }
+ const_opaque : bool }
let is_defined cb =
match cb.const_body with Some _ -> true | _ -> false
@@ -31,8 +31,9 @@ let is_opaque cb = cb.const_opaque
(*s Global and local constant declaration. *)
type constant_entry = {
- const_entry_body : constr;
- const_entry_type : constr option }
+ const_entry_body : constr;
+ const_entry_type : constr option;
+ const_entry_opaque : bool }
type local_entry =
| LocalDef of constr