Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to coq/coq#19646 (wit_binders and wit_withtac are vernac arguments) #855

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion serlib/plugins/funind/ser_g_indfun.ml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module WFFD = struct
end

let ser_wit_function_fix_definition =
let module M = Ser_genarg.GS0(WFFD) in M.genser
let module M = Ser_genarg.GSV(WFFD) in M.genser

module WAU = struct
type raw = Constrexpr.constr_expr list
Expand Down
4 changes: 2 additions & 2 deletions serlib/plugins/ltac/ser_tacarg.ml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ module GT0 = struct
[@@deriving sexp,hash,compare]
end

let ser_wit_binders = let module M = Ser_genarg.GS0(GT0) in M.genser
let ser_wit_binders = let module M = Ser_genarg.GSV(GT0) in M.genser

let wit_glob_constr_with_bindings = Ltac_plugin.G_rewrite.wit_glob_constr_with_bindings

Expand Down Expand Up @@ -265,7 +265,7 @@ module SWWT = struct
type t = Ser_tacexpr.raw_tactic_expr option
[@@deriving sexp,hash,compare]
end
let ser_wit_withtac = let module M = Ser_genarg.GS0(SWWT) in M.genser
let ser_wit_withtac = let module M = Ser_genarg.GSV(SWWT) in M.genser

(* extraargs *)

Expand Down
2 changes: 1 addition & 1 deletion vendor/coq
Submodule coq updated 181 files