Skip to content

Commit

Permalink
Adapt w.r.t. coq/coq#19228. (#1934)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedrot authored Jul 29, 2024
1 parent 1283287 commit 15d4aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Util/Option.v
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Definition is_Some {A} (x : option A) : bool
Lemma is_None_eq_None_iff {A x} : @is_None A x = true <-> x = None.
Proof. destruct x; cbv; split; congruence. Qed.

Definition invert_Some {A} (x : option A) : match x with
Definition invert_Some {A : Type} (x : option A) : match x with
| Some _ => A
| None => unit
end
Expand Down

0 comments on commit 15d4aa0

Please sign in to comment.