aboutsummaryrefslogtreecommitdiff
path: root/user-contrib/Ltac2/Std.v
diff options
context:
space:
mode:
authorSamuel Gruetter2021-04-08 19:41:18 -0400
committerSamuel Gruetter2021-04-08 19:41:18 -0400
commit807ea5f44ca74c2b2743ed0719e3cbdc46639da7 (patch)
tree5739647ab624c4ec2665b956ed75bf71b60f4adf /user-contrib/Ltac2/Std.v
parentfb63ec7c10076d156caa43f73bad4f69653862a6 (diff)
remove `with hintdb` variant of Ltac2 `unify`, because
passing one single hintdb is not quite the right API, we should pass a transparent state instead, but that would require an API for manipulating hintdbs and transparent states, postponing
Diffstat (limited to 'user-contrib/Ltac2/Std.v')
-rw-r--r--user-contrib/Ltac2/Std.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/user-contrib/Ltac2/Std.v b/user-contrib/Ltac2/Std.v
index 17741e563d..3675df9f75 100644
--- a/user-contrib/Ltac2/Std.v
+++ b/user-contrib/Ltac2/Std.v
@@ -260,4 +260,4 @@ Ltac2 @ external eauto : debug -> int option -> int option -> (unit -> constr) l
Ltac2 @ external typeclasses_eauto : strategy option -> int option -> ident list option -> unit := "ltac2" "tac_typeclasses_eauto".
-Ltac2 @ external unify : constr -> constr -> ident option -> unit := "ltac2" "tac_unify".
+Ltac2 @ external unify : constr -> constr -> unit := "ltac2" "tac_unify".