aboutsummaryrefslogtreecommitdiff
path: root/tactics/tactics.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-05-11 15:35:46 +0200
committerHugo Herbelin2019-05-14 15:51:48 +0200
commitcc1d9256b721b859d7a0dbe63a991f3e40aa67d3 (patch)
tree6eb10f91593344d7e05ac6959fff6cc04954a2ce /tactics/tactics.mli
parent37a560eb48c982bc933837e10f1ae41a4322ca77 (diff)
Remove the elimrename field from Tactics.eliminator.
This is actually dead code, we never observe it.
Diffstat (limited to 'tactics/tactics.mli')
-rw-r--r--tactics/tactics.mli1
1 files changed, 0 insertions, 1 deletions
diff --git a/tactics/tactics.mli b/tactics/tactics.mli
index 9eb8196280..32c64bacf6 100644
--- a/tactics/tactics.mli
+++ b/tactics/tactics.mli
@@ -282,7 +282,6 @@ val compute_elim_sig : evar_map -> ?elimc:constr with_bindings -> types -> elim_
(** elim principle with the index of its inductive arg *)
type eliminator = {
elimindex : int option; (** None = find it automatically *)
- elimrename : (bool * int array) option; (** None = don't rename Prop hyps with H-names *)
elimbody : constr with_bindings
}