Skip to content

Commit

Permalink
Adapt to coq/coq#19646 (wit_binders and wit_withtac are vernac argume…
Browse files Browse the repository at this point in the history
…nts)
  • Loading branch information
SkySkimmer committed Oct 9, 2024
1 parent f98b653 commit e442528
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit e442528

Please sign in to comment.