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
Deallocations of manually allocated memory that is over-aligned is undefined behavior since Rust requires deallocations to have the exact same layout as the corresponding allocations. This happens when manually allocated memory is wrapped using a Vec.
The text was updated successfully, but these errors were encountered:
Deallocations of manually allocated memory that is over-aligned is undefined behavior since Rust requires deallocations to have the exact same layout as the corresponding allocations. This happens when manually allocated memory is wrapped using a
Vec
.The text was updated successfully, but these errors were encountered: