Skip to content

Commit 0b0c82b

Browse files
committed
Core: fix compilation in Decision
1 parent ef18c1d commit 0b0c82b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

theories/Core/Decision.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Require Import Coq.Classes.DecidableClass.
22

3-
Definition decideP (P : Prop) (D : Decidable P) : {P} + {~P} :=
3+
Definition decideP (P : Prop) {D : Decidable P} : {P} + {~P} :=
44
match @Decidable_witness P D as X return (X = true -> P) -> (X = false -> ~P) -> {P} + {~P} with
55
| true => fun pf _ => left (pf eq_refl)
66
| false => fun _ pf => right (pf eq_refl)

0 commit comments

Comments
 (0)