aboutsummaryrefslogtreecommitdiff
path: root/kernel/declareops.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-04-30 14:10:16 +0200
committerPierre-Marie Pédrot2020-04-30 14:10:16 +0200
commitd436c45a19de2f91aad94f492b547225f8c5b305 (patch)
treeb666e829b6545ba38170dcf79276714dd89cbe32 /kernel/declareops.ml
parent010ef152611977770fa137ed5980205d412febe5 (diff)
parent7a4e7dfbaa8dc3fa92931c4bfa39d268940e08f8 (diff)
Merge PR #12107: Remove mod_constraints field of module body
Reviewed-by: ppedrot
Diffstat (limited to 'kernel/declareops.ml')
-rw-r--r--kernel/declareops.ml3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/declareops.ml b/kernel/declareops.ml
index b347152c16..0ab99cab35 100644
--- a/kernel/declareops.ml
+++ b/kernel/declareops.ml
@@ -391,7 +391,6 @@ and hcons_generic_module_body :
let expr' = hcons_impl mb.mod_expr in
let type' = hcons_module_signature mb.mod_type in
let type_alg' = mb.mod_type_alg in
- let constraints' = Univ.hcons_universe_context_set mb.mod_constraints in
let delta' = mb.mod_delta in
let retroknowledge' = mb.mod_retroknowledge in
@@ -400,7 +399,6 @@ and hcons_generic_module_body :
mb.mod_expr == expr' &&
mb.mod_type == type' &&
mb.mod_type_alg == type_alg' &&
- mb.mod_constraints == constraints' &&
mb.mod_delta == delta' &&
mb.mod_retroknowledge == retroknowledge'
then mb
@@ -409,7 +407,6 @@ and hcons_generic_module_body :
mod_expr = expr';
mod_type = type';
mod_type_alg = type_alg';
- mod_constraints = constraints';
mod_delta = delta';
mod_retroknowledge = retroknowledge';
}