aboutsummaryrefslogtreecommitdiff
path: root/src/Primitives/MxDHRepChange.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-06-02 00:01:35 -0400
committerGravatar Jason Gross <jasongross9@gmail.com>2017-06-05 18:47:35 -0400
commit7488682db4cf259e0bb0c886e13301c32a2eeaa2 (patch)
tree9baf80699c9f00b01d3180504d58351b6ecc0f33 /src/Primitives/MxDHRepChange.v
parentc4a0d1fdde22dbd2faaa1753e973ee9602076ee8 (diff)
Don't rely on autogenerated names
This fixes all of the private-names warnings emitted by compiling fiat-crypto with https://github.com/coq/coq/pull/268 (minus the ones in coqprime, which I didn't touch).
Diffstat (limited to 'src/Primitives/MxDHRepChange.v')
-rw-r--r--src/Primitives/MxDHRepChange.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Primitives/MxDHRepChange.v b/src/Primitives/MxDHRepChange.v
index 9f0276ef8..eb3df559a 100644
--- a/src/Primitives/MxDHRepChange.v
+++ b/src/Primitives/MxDHRepChange.v
@@ -100,7 +100,7 @@ Section MxDHRepChange.
R (proj (fold_left step xs init)) (fold_left step' xs init').
Proof using Type.
generalize dependent init; generalize dependent init'.
- induction xs; [solve [eauto]|].
+ induction xs as [|?? IHxs]; [solve [eauto]|].
repeat intro; simpl; rewrite IHxs by eauto.
apply (_ : Proper ((R ==> eq ==> R) ==> SetoidList.eqlistA eq ==> R ==> R) (@fold_left _ _));
try reflexivity;