mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 14:15:29 +00:00
avoid transmuting Box when we can just cast raw pointers instead Always better to avoid a transmute, in particular when the layout assumptions it is making are not clearly documented. :)