From a2a2529d78b86ece65cfc03fa8670538b85bc991 Mon Sep 17 00:00:00 2001 From: Gaƫtan Gilbert Date: Sun, 3 Oct 2021 18:16:47 +0200 Subject: Adapt to coq/coq#13837 ("apply with" does not rename arguments) (#417) The change is backward compatible with Coq 8.9 to 8.13 (at least). --- common/Smallstep.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/Smallstep.v b/common/Smallstep.v index f337ba3c..06a18e7d 100644 --- a/common/Smallstep.v +++ b/common/Smallstep.v @@ -960,7 +960,7 @@ Qed. Lemma forward_simulation_determ: forward_simulation L1 L2. Proof. - apply Forward_simulation with (order0 := lex_ord order lt) (match_states0 := match_states_later); + apply @Forward_simulation with (order := lex_ord order lt) (match_states := match_states_later); constructor. - apply wf_lex_ord. apply wf_order. apply lt_wf. - intros. exploit match_initial_states; eauto. intros (i & s2 & A & B). -- cgit