diff options
Diffstat (limited to 'kernel/mod_typing.ml')
| -rw-r--r-- | kernel/mod_typing.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/mod_typing.ml b/kernel/mod_typing.ml index b8399ab321..ba4dcf0b7f 100644 --- a/kernel/mod_typing.ml +++ b/kernel/mod_typing.ml @@ -92,13 +92,13 @@ and merge_with env mtb with_decl = in SPBconst {cb with const_body = - Some (Lazy.lazy_from_val j.uj_val); + Some (Declarations.from_val j.uj_val); const_constraints = cst} | Some b -> - let cst1 = Reduction.conv env' c (Lazy.force_val b) in + let cst1 = Reduction.conv env' c (Declarations.force b) in let cst = Constraint.union cb.const_constraints cst1 in SPBconst {cb with - const_body = Some (Lazy.lazy_from_val c); + const_body = Some (Declarations.from_val c); const_constraints = cst} end | With_Module (id, mp) -> |
