aboutsummaryrefslogtreecommitdiff
path: root/pretyping/typeclasses.mli
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-09-30 12:54:59 +0200
committerGaëtan Gilbert2020-10-06 12:41:16 +0200
commite23be6ebc7d9c9842f8c1036e145fb15c3154e17 (patch)
tree791106c893467e5906c516904261dc0b89e7e71f /pretyping/typeclasses.mli
parent07b7bd7f8358d199b0464a673aec50dedae0a45d (diff)
Remove unused is_class info from cl_context
Diffstat (limited to 'pretyping/typeclasses.mli')
-rw-r--r--pretyping/typeclasses.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/pretyping/typeclasses.mli b/pretyping/typeclasses.mli
index ea67ca273e..b749b978c3 100644
--- a/pretyping/typeclasses.mli
+++ b/pretyping/typeclasses.mli
@@ -36,9 +36,9 @@ type typeclass = {
(** The class implementation: a record parameterized by the context with defs in it or a definition if
the class is a singleton. This acts as the class' global identifier. *)
- cl_context : bool list * Constr.rel_context;
- (** Context in which the definitions are typed. Includes both typeclass parameters and superclasses.
- The bool says whether we are at a class. *)
+ cl_context : Constr.rel_context;
+ (** Context in which the definitions are typed.
+ Includes both typeclass parameters and superclasses. *)
cl_props : Constr.rel_context;
(** Context of definitions and properties on defs, will not be shared *)