aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Structures
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-09-17 20:24:36 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-09-17 20:29:51 +0200
commitf1a561d847e207433a0ec3e6333798dfa19e4a0c (patch)
tree971b4b852a4f9363ba82a27ace74a3e1c1fce151 /theories/Structures
parente6eef565639fb3840dd235eb675ece6e4dbeb082 (diff)
Further "decide equality" tests on demand of Jason.
Diffstat (limited to 'theories/Structures')
-rw-r--r--theories/Structures/OrdersFacts.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Structures/OrdersFacts.v b/theories/Structures/OrdersFacts.v
index b059173cb..6f8fc1b32 100644
--- a/theories/Structures/OrdersFacts.v
+++ b/theories/Structures/OrdersFacts.v
@@ -448,7 +448,7 @@ Lemma leb_compare x y :
(x <=? y) = match compare x y with Gt => false | _ => true end.
Proof.
apply eq_true_iff_eq. rewrite leb_le, <- compare_le_iff.
-now destruct compare; split.
+now destruct compare.
Qed.
End BoolOrderFacts.