-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context is not Sync anymore #2641
Comments
Proper fixes would require rust-lang/rust#68318 and/or rust-lang/rust#80945 |
lu-zero
added a commit
to rust-av/rav1e
that referenced
this issue
Jan 15, 2021
And add Sync to its bounds Fixes: xiph#2641
lu-zero
added a commit
to rust-av/rav1e
that referenced
this issue
Jan 18, 2021
And add Sync to its bounds Fixes: xiph#2641
lu-zero
added a commit
to rust-av/rav1e
that referenced
this issue
Feb 4, 2021
And add Sync to its bounds Fixes: xiph#2641
lu-zero
added a commit
to rust-av/rav1e
that referenced
this issue
Feb 9, 2021
And add Sync to its bounds Fixes: xiph#2641
lu-zero
added a commit
to rust-av/rav1e
that referenced
this issue
Feb 9, 2021
And add Sync to its bounds Fixes: xiph#2641
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See #2640
Reason is that it stores
Box<dyn Any + Send>
now but doesn't also requireSync
.The text was updated successfully, but these errors were encountered: