aboutsummaryrefslogtreecommitdiff
path: root/tactics/auto.mli
diff options
context:
space:
mode:
authormsozeau2011-10-18 15:01:00 +0000
committermsozeau2011-10-18 15:01:00 +0000
commit391bbdcd874bc358bb052fbe94d40304ebcfb5b5 (patch)
tree2725bd8e4e87e8d6ab57dc3cf7754f4679945e98 /tactics/auto.mli
parent8fb5eeef9efe3873b10c4f14ba06a1883bc38aac (diff)
Fix bug #2227
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14572 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/auto.mli')
-rw-r--r--tactics/auto.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/auto.mli b/tactics/auto.mli
index 32eaeef27f..8556b453fc 100644
--- a/tactics/auto.mli
+++ b/tactics/auto.mli
@@ -39,7 +39,7 @@ type pri_auto_tactic = {
code : auto_tactic; (** the tactic to apply when the concl matches pat *)
}
-type stored_data = pri_auto_tactic
+type stored_data = int * pri_auto_tactic
type search_entry
@@ -52,7 +52,7 @@ module Hint_db :
type t
val empty : transparent_state -> bool -> t
val find : global_reference -> t -> search_entry
- val map_none : t -> pri_auto_tactic list
+ val map_none : t ->pri_auto_tactic list
val map_all : global_reference -> t -> pri_auto_tactic list
val map_auto : global_reference * constr -> t -> pri_auto_tactic list
val add_one : hint_entry -> t -> t