Skip to content
Snippets Groups Projects
Commit 144d62b0 authored by Tej Chajed's avatar Tej Chajed Committed by Ralf Jung
Browse files

Remove useless implicit annotation on binder

Fixes a new warning on Coq 8.12+alpha when implicit annotations are used
in positions where they are ignored.
parent a3cea59c
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,7 @@ Proof. by eexists. Qed.
Definition envs_entails {PROP : bi} (Δ : envs PROP) (Q : PROP) : Prop :=
envs_entails_aux.(unseal) PROP (env_intuitionistic Δ) (env_spatial Δ) Q.
Definition envs_entails_eq :
@envs_entails = λ {PROP} (Δ : envs PROP) Q, (of_envs Δ Q).
@envs_entails = λ PROP (Δ : envs PROP) Q, (of_envs Δ Q).
Proof. by rewrite /envs_entails envs_entails_aux.(seal_eq). Qed.
Arguments envs_entails {PROP} Δ Q%I : rename.
Instance: Params (@envs_entails) 1 := {}.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment