mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 11:55:31 +00:00
`AlignmentEnum` should just be `repr(usize)` now These used to use specific sizes because they were compiled on all widths. But now that the types themselves are `#[cfg]`'d, we can save some conversions by having it always be `repr(usize)`.