aboutsummaryrefslogtreecommitdiff
path: root/tactics/hints.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-03-12 15:11:35 +0100
committerPierre-Marie Pédrot2020-03-18 11:44:50 +0100
commit96ec58df041dc0111df0e681269aed9d0e9b571a (patch)
tree7abcbb4ec26dfd3fb2ac81934d6e8c8602cc7d80 /tactics/hints.mli
parent245b94cd075b6be527590c425a98262d89577909 (diff)
Use a 3-valued flag for hint locality.
We reuse the same type as for options, even though it is a bit ill-named. At least it allows to share code with it.
Diffstat (limited to 'tactics/hints.mli')
-rw-r--r--tactics/hints.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/hints.mli b/tactics/hints.mli
index 3fd4d6ea9e..c9d4231d77 100644
--- a/tactics/hints.mli
+++ b/tactics/hints.mli
@@ -219,7 +219,7 @@ val current_pure_db : unit -> hint_db list
val interp_hints : poly:bool -> hints_expr -> hints_entry
-val add_hints : local:bool -> superglobal:bool -> hint_db_name list -> hints_entry -> unit
+val add_hints : locality:Goptions.option_locality -> hint_db_name list -> hints_entry -> unit
val prepare_hint : bool (* Check no remaining evars *) ->
env -> evar_map -> evar_map * constr -> (constr * Univ.ContextSet.t)