diff options
| author | Gaëtan Gilbert | 2018-04-12 21:41:03 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2018-05-31 10:13:33 +0200 |
| commit | c7bd285555153294ec077cfa05c36bb420716f3b (patch) | |
| tree | e6f414e1f0e5914a17c98e104d49691bae27035b /kernel/declarations.ml | |
| parent | 4598a26890a896ddcf6cd30758ae07882e245a16 (diff) | |
Reduce circular dependency constants <-> projections
Instead of having the projection data in the constant data we have it
independently in the environment.
Diffstat (limited to 'kernel/declarations.ml')
| -rw-r--r-- | kernel/declarations.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/declarations.ml b/kernel/declarations.ml index b7427d20a7..913c13173d 100644 --- a/kernel/declarations.ml +++ b/kernel/declarations.ml @@ -87,7 +87,7 @@ type constant_body = { const_type : types; const_body_code : Cemitcodes.to_patch_substituted option; const_universes : constant_universes; - const_proj : projection_body option; + const_proj : bool; const_inline_code : bool; const_typing_flags : typing_flags; (** The typing options which were used for |
