Skip to content
Snippets Groups Projects
Commit 05b1c41f authored by Ralf Jung's avatar Ralf Jung
Browse files

Merge branch 'fix-ignored-implicit-warning' into 'master'

Remove useless implicit annotation on binder

See merge request iris/iris!376
parents a3cea59c 144d62b0
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ Proof. by eexists. Qed. ...@@ -263,7 +263,7 @@ Proof. by eexists. Qed.
Definition envs_entails {PROP : bi} (Δ : envs PROP) (Q : PROP) : Prop := Definition envs_entails {PROP : bi} (Δ : envs PROP) (Q : PROP) : Prop :=
envs_entails_aux.(unseal) PROP (env_intuitionistic Δ) (env_spatial Δ) Q. envs_entails_aux.(unseal) PROP (env_intuitionistic Δ) (env_spatial Δ) Q.
Definition envs_entails_eq : 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. Proof. by rewrite /envs_entails envs_entails_aux.(seal_eq). Qed.
Arguments envs_entails {PROP} Δ Q%I : rename. Arguments envs_entails {PROP} Δ Q%I : rename.
Instance: Params (@envs_entails) 1 := {}. 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