blob: 3af99e3ca149bf53fa803e05bb15f02f6f60a6e1 [file] [log] [blame]
cfg_if! {
if #[cfg(target_pointer_width = "64")] {
s_no_extra_traits! {
#[allow(missing_debug_implementations)]
#[repr(align(16))]
pub struct max_align_t {
priv_: [f64; 4]
}
}
} else if #[cfg(target_pointer_width = "32")] {
s_no_extra_traits! {
#[allow(missing_debug_implementations)]
#[repr(align(16))]
pub struct max_align_t {
priv_: [i64; 6]
}
}
}
}