diff options
| author | Jasper Hugunin | 2020-10-09 16:30:39 -0700 |
|---|---|---|
| committer | Jasper Hugunin | 2020-10-11 19:05:14 -0700 |
| commit | 4d4d2128d2dc761a1b3e002780b865f77fe61e67 (patch) | |
| tree | bc2a29e6f4a5ad4e4ffe01285167c201e14fc708 | |
| parent | 3191883b460747ad7eb68032f72b9228294f3f3f (diff) | |
Modify Vectors/VectorEq.v to compile with -mangle-names
| -rw-r--r-- | theories/Vectors/VectorEq.v | 2 |
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. |
