aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/decls.mli
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2016-09-22 17:11:12 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2016-09-22 17:11:36 +0200
commit30a908becf31d91592a1f7934cfa3df2d67d1834 (patch)
tree264176851bd7f316a5425f84aeccaac952793440 /library/decls.mli
parent3c47248abc27aa9c64120db30dcb0d7bf945bc70 (diff)
Revert "Merge remote-tracking branch 'github/pr/283' into trunk"
I hadn't realized that this PR uses OCaml's 4.03 inlined records feature. I will advocate again for a switch to the latest OCaml stable version, but meanwhile, let's revert. Sorry for the noise. This reverts commit 3c47248abc27aa9c64120db30dcb0d7bf945bc70, reversing changes made to ceb68d1d643ac65f500e0201f61e73cf22e6e2fb.
Diffstat (limited to 'library/decls.mli')
-rw-r--r--library/decls.mli6
1 files changed, 1 insertions, 5 deletions
diff --git a/library/decls.mli b/library/decls.mli
index e84a6376b..1ca7f8946 100644
--- a/library/decls.mli
+++ b/library/decls.mli
@@ -17,11 +17,7 @@ open Decl_kinds
(** Registration and access to the table of variable *)
type variable_data =
- { dir_path : DirPath.t;
- opaque : bool;
- universe_context_set : Univ.universe_context_set;
- polymorphic : bool;
- kind : logical_kind }
+ DirPath.t * bool (** opacity *) * Univ.universe_context_set * polymorphic * logical_kind
val add_variable_data : variable -> variable_data -> unit
val variable_path : variable -> DirPath.t