aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Hugunin2020-08-24 16:05:18 -0700
committerJasper Hugunin2020-08-25 13:53:31 -0700
commit59d99ebd3f6f9e14e2e018140bedbac50be4518a (patch)
tree90e5175b2fc14815eb3004497fe893cbe73c7993
parenta66a9cdfe02409a5d3fd1dcad47b9c6932a0d061 (diff)
Modify Setoids/Setoid.v to compile with -mangle-names
-rw-r--r--theories/Setoids/Setoid.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Setoids/Setoid.v b/theories/Setoids/Setoid.v
index b10c4f3768..cec1033fdf 100644
--- a/theories/Setoids/Setoid.v
+++ b/theories/Setoids/Setoid.v
@@ -33,7 +33,7 @@ Defined.
Definition Seq_trans A Aeq (s : Setoid_Theory A Aeq) : forall x y z:A, Aeq x y -> Aeq y z -> Aeq x z.
Proof.
- unfold Setoid_Theory in s. intros ; transitivity y ; assumption.
+ unfold Setoid_Theory in s. intros x y z H0 H1 ; transitivity y ; assumption.
Defined.
(** Some tactics for manipulating Setoid Theory not officially