aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Hugunin2020-09-09 12:45:13 -0700
committerJasper Hugunin2020-09-16 12:46:57 -0700
commit0991de1cc62d3ab0c5d8839810e92d78c5734bc8 (patch)
tree664e58b677661b00745436e40aa6fc1f05b18414
parent4950ed3ad6e303d431c115555413cf9895eee0a1 (diff)
Modify Arith/Le.v to compile with -mangle-names
-rw-r--r--theories/Arith/Le.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Arith/Le.v b/theories/Arith/Le.v
index 4f17a7a8d3..4e71465452 100644
--- a/theories/Arith/Le.v
+++ b/theories/Arith/Le.v
@@ -80,7 +80,7 @@ Lemma le_elim_rel :
(forall p (q:nat), p <= q -> P p q -> P (S p) (S q)) ->
forall n m, n <= m -> P n m.
Proof.
- intros P H0 HS.
+ intros P H0 HS n.
induction n; trivial.
intros m Le. elim Le; auto with arith.
Qed.