diff options
| author | Pierre-Marie Pédrot | 2018-06-01 16:23:29 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2018-06-17 11:34:43 +0200 |
| commit | 74d700e9f7fcb14e7136e87b5efab25d5adb194b (patch) | |
| tree | 6b5c575b669a385931e61c645d137dc356985a77 /kernel/environ.ml | |
| parent | d62354b7e9ff8e20aa959984b392a27e26f9fc24 (diff) | |
Getting rid of the const_proj field in the kernel.
This field used to signal that a constant was the compatibility
eta-expansion of a primitive projections, but since a previous cleanup in
the kernel it had become useless.
Diffstat (limited to 'kernel/environ.ml')
| -rw-r--r-- | kernel/environ.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/environ.ml b/kernel/environ.ml index fb89576dd0..2d6c9117b3 100644 --- a/kernel/environ.ml +++ b/kernel/environ.ml @@ -490,7 +490,7 @@ let lookup_projection cst env = Cmap_env.find (Projection.constant cst) env.env_globals.env_projections let is_projection cst env = - (lookup_constant cst env).const_proj + Cmap_env.mem cst env.env_globals.env_projections (* Mutual Inductives *) let polymorphic_ind (mind,i) env = |
