chore: fix build

This commit is contained in:
Leonardo de Moura 2022-11-19 07:43:54 -08:00
parent a5ab59a413
commit 966e1df96d

View file

@ -704,7 +704,7 @@ theorem decide_false_eq_false (h : Decidable False) : @decide False h = false :=
/-- Similar to `decide`, but uses an explicit instance -/
@[inline] def toBoolUsing {p : Prop} (d : Decidable p) : Bool :=
decide p (h := d)
decide (h := d)
theorem toBoolUsing_eq_true {p : Prop} (d : Decidable p) (h : p) : toBoolUsing d = true :=
decide_eq_true (inst := d) h