aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/typeclasses.mli
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-12-27 09:48:38 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-12-27 09:48:38 +0100
commit9a8737360c72735e2099e4d81c9448f37311b498 (patch)
tree1964cb69a389a1b4292c5d1a546e145bbba548a8 /pretyping/typeclasses.mli
parent7fa691096df2ab8924f3449f588a6a9d6c81b5f7 (diff)
parent4baccd824d1fe40c57b25c6d3ce04a54c6a38420 (diff)
Merge PR #6289: Remove unused boolean from cl_context field of Typeclasses.typeclass
Diffstat (limited to 'pretyping/typeclasses.mli')
-rw-r--r--pretyping/typeclasses.mli5
1 files changed, 2 insertions, 3 deletions
diff --git a/pretyping/typeclasses.mli b/pretyping/typeclasses.mli
index 8ee061330..0cbe1c71c 100644
--- a/pretyping/typeclasses.mli
+++ b/pretyping/typeclasses.mli
@@ -25,9 +25,8 @@ type typeclass = {
cl_impl : global_reference;
(** Context in which the definitions are typed. Includes both typeclass parameters and superclasses.
- The boolean indicates if the typeclass argument is a direct superclass and the global reference
- gives a direct link to the class itself. *)
- cl_context : (global_reference * bool) option list * Context.Rel.t;
+ The global reference gives a direct link to the class itself. *)
+ cl_context : global_reference option list * Context.Rel.t;
(** Context of definitions and properties on defs, will not be shared *)
cl_props : Context.Rel.t;