Skip to content

Commit c75f270

Browse files
authored
Merge pull request LPCIC#776 from eponier/pos_eq_dec-transparent
Make pos_eq_dec transparent
2 parents 86889bd + 1a598bf commit c75f270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/derive/theories/derive/eqb_core_defs.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Definition eqax_on (eqb : A -> A -> bool) (a1:A) :=
3030
End Section.
3131

3232
Lemma pos_eq_dec : forall x y:positive, {x = y} + {x <> y}.
33-
Proof. decide equality. Qed.
33+
Proof. decide equality. Defined.
3434

3535
Theorem UIP_dec (A : Type) (eq_dec : forall x y : A, {x = y} + {x <> y}) :
3636
forall (x y : A) (p1 p2 : x = y), p1 = p2.

0 commit comments

Comments
 (0)