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
The `mem::uninitialized()` function is considered undefined behavior,
and is therefore heavily deprecated. Instead, `mem::MaybeUninit` is
preferred.
Convert the usage of `mem::uninitialized()` into `mem::MaybeUninit` in
the `Transform::identity()` function to remove this UB.
Signed-off-by: Sean Cross <[email protected]>
0 commit comments