diff options
| author | Gaëtan Gilbert | 2020-09-30 12:25:02 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-10-06 12:40:33 +0200 |
| commit | c8c1723747c7e0eb748861cc12aecca411848f4c (patch) | |
| tree | d3e62beaa23ca07f199ca3f0928c87511f1ba19e /pretyping/typeclasses.ml | |
| parent | 6d3a9220204de22e0b81dc961d2eb269128b5c2e (diff) | |
First list in cl_context is just booleans
Used only by implicit_quantifiers
Diffstat (limited to 'pretyping/typeclasses.ml')
| -rw-r--r-- | pretyping/typeclasses.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pretyping/typeclasses.ml b/pretyping/typeclasses.ml index fc71254a46..7479a63762 100644 --- a/pretyping/typeclasses.ml +++ b/pretyping/typeclasses.ml @@ -56,7 +56,7 @@ type typeclass = { cl_impl : GlobRef.t; (* Context in which the definitions are typed. Includes both typeclass parameters and superclasses. *) - cl_context : GlobRef.t option list * Constr.rel_context; + cl_context : bool list * Constr.rel_context; (* Context of definitions and properties on defs, will not be shared *) cl_props : Constr.rel_context; |
