Skip to content
Snippets Groups Projects
Commit fcd41fdf authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Remove useless cast.

parent c0c65a98
No related branches found
No related tags found
No related merge requests found
......@@ -21,8 +21,8 @@ Definition one_shot_example : val := λ: <>,
end)).
Definition one_shotR := csumR (exclR unitC) (agreeR ZC).
Definition Pending : one_shotR := (Cinl (Excl ()) : one_shotR).
Definition Shot (n : Z) : one_shotR := (Cinr (to_agree n) : one_shotR).
Definition Pending : one_shotR := Cinl (Excl ()).
Definition Shot (n : Z) : one_shotR := Cinr (to_agree n).
Class one_shotG Σ := { one_shot_inG :> inG Σ one_shotR }.
Definition one_shotΣ : gFunctors := #[GFunctor one_shotR].
......
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