Skip to content

Commit

Permalink
Merge pull request #334 from SkySkimmer/fix-async-qvar-union
Browse files Browse the repository at this point in the history
Adapt to coq/coq#17662 (qvar representation changed)
  • Loading branch information
ppedrot committed Jun 1, 2023
2 parents 2860583 + a903563 commit 82620ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions serlib/ser_sorts.ml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ module BijectQVar = struct
open Ppx_hash_lib.Std.Hash.Builtin
open Ppx_compare_lib.Builtin
type t = Sorts.QVar.t
type _t = int [@@deriving sexp,yojson,hash,compare]
type _t = string * int [@@deriving sexp,yojson,hash,compare]
let of_t = Sorts.QVar.repr
let to_t = Sorts.QVar.make
let to_t (s,i) = Sorts.QVar.make s i
end

module QVar = SerType.Biject(BijectQVar)
Expand Down

0 comments on commit 82620ec

Please sign in to comment.