blob: 3af99e3ca149bf53fa803e05bb15f02f6f60a6e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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]
}
}
}
}
|