You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yesterday the MaybeUninit::read function has been renamed into assume_init_read via this commit. It has been briefly discussed here before that. Of course this means that staticvec does not compile with the lastest nightly build.
--> src/lib.rs:1693:29
|
1693 | unsafe { Ok(self.data.read()) }
| ^^^^ method not found in `MaybeUninit<[T; N]>`
The text was updated successfully, but these errors were encountered:
I've fixed this issue myself now, as it was the first thing I noticed when I tried to compile the crate earlier today with the latest nightly. Thanks for being proactive though!
Hi,
yesterday the
MaybeUninit::read
function has been renamed intoassume_init_read
via this commit. It has been briefly discussed here before that. Of course this means thatstaticvec
does not compile with the lastest nightly build.The text was updated successfully, but these errors were encountered: