aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Hugunin2020-10-09 16:30:39 -0700
committerJasper Hugunin2020-10-11 19:05:14 -0700
commit4d4d2128d2dc761a1b3e002780b865f77fe61e67 (patch)
treebc2a29e6f4a5ad4e4ffe01285167c201e14fc708
parent3191883b460747ad7eb68032f72b9228294f3f3f (diff)
Modify Vectors/VectorEq.v to compile with -mangle-names
-rw-r--r--theories/Vectors/VectorEq.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Vectors/VectorEq.v b/theories/Vectors/VectorEq.v
index 6bd2c30205..c36917aa90 100644
--- a/theories/Vectors/VectorEq.v
+++ b/theories/Vectors/VectorEq.v
@@ -36,7 +36,7 @@ Section BEQ.
(Hbeq: eqb v1 v2 = true), m = n.
Proof.
intros m n v1; revert n.
- induction v1; destruct v2;
+ induction v1; intros ? v2; destruct v2;
[now constructor | discriminate | discriminate | simpl].
intros Hbeq; apply andb_prop in Hbeq; destruct Hbeq.
f_equal; eauto.