aboutsummaryrefslogtreecommitdiff
path: root/proofs/clenv.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-10-21 20:02:30 +0200
committerPierre-Marie Pédrot2014-10-21 20:17:58 +0200
commiteb9c2c40da773cd7d619ea4aa9dffc8d3455e264 (patch)
tree2a0b48e3800146808f54c62f16665b6409f6bd6f /proofs/clenv.mli
parentc1e1e52311745ac5bad85b49d76c8ff327d6e74f (diff)
Lazily check that an argument is dependent when constructing evar clauses.
Diffstat (limited to 'proofs/clenv.mli')
-rw-r--r--proofs/clenv.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/clenv.mli b/proofs/clenv.mli
index b57178cd47..d7bdaf2f5c 100644
--- a/proofs/clenv.mli
+++ b/proofs/clenv.mli
@@ -111,7 +111,7 @@ val pr_clenv : clausenv -> Pp.std_ppcmds
type hole = {
hole_evar : constr;
hole_type : types;
- hole_deps : bool * bool;
+ hole_deps : bool;
(** Dependent in hypotheses then in conclusion *)
hole_name : Name.t;
}