Skip to content

Commit

Permalink
fix: Compatibility with compilers >= 4.09.0 (impermeable#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-portegies authored Jan 1, 2024
1 parent e9aeb7e commit 7e0c89b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion coq-waterproof.opam
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dev-repo: "git+https://github.com/impermeable/coq-waterproof.git"
bug-reports: "https://github.com/impermeable/coq-waterproof/issues"

depends: [
"ocaml" {>= "4.14.1"}
"ocaml" {>= "4.09.0"}
"coq" {>= "8.17" & < "8.18"}
"dune" {>= "3.6."}
]
Expand Down
2 changes: 0 additions & 2 deletions src/proofutils.mli
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ module StringMap : sig
val for_all : (key -> 'a -> bool) -> 'a t -> bool
val exists : (key -> 'a -> bool) -> 'a t -> bool
val filter : (key -> 'a -> bool) -> 'a t -> 'a t
val filter_map : (key -> 'a -> 'b option) -> 'a t -> 'b t
val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
val cardinal : 'a t -> int
val bindings : 'a t -> (key * 'a) list
Expand All @@ -88,7 +87,6 @@ module StringMap : sig
val map : ('a -> 'b) -> 'a t -> 'b t
val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
val to_seq : 'a t -> (key * 'a) Seq.t
val to_rev_seq : 'a t -> (key * 'a) Seq.t
val to_seq_from : key -> 'a t -> (key * 'a) Seq.t
val add_seq : (key * 'a) Seq.t -> 'a t -> 'a t
val of_seq : (key * 'a) Seq.t -> 'a t
Expand Down

0 comments on commit 7e0c89b

Please sign in to comment.