File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1172,9 +1172,9 @@ s_no_extra_traits! {
1172
1172
pub ifi_noproto: u64 ,
1173
1173
pub ifi_recvtiming: u32 ,
1174
1174
pub ifi_xmittiming: u32 ,
1175
- #[ cfg( any ( target_arch = "arm" , target_arch = "x86" , target_pointer_width = "32" ) ) ]
1175
+ #[ cfg( target_pointer_width = "32" ) ]
1176
1176
pub ifi_lastchange: :: timeval,
1177
- #[ cfg( not( any ( target_arch = "arm" , target_arch = "x86" , target_pointer_width = "32" ) ) ) ]
1177
+ #[ cfg( not( target_pointer_width = "32" ) ) ]
1178
1178
pub ifi_lastchange: timeval32,
1179
1179
}
1180
1180
@@ -5522,10 +5522,10 @@ extern "C" {
5522
5522
}
5523
5523
5524
5524
cfg_if ! {
5525
- if #[ cfg( any ( target_arch = "arm" , target_arch = "x86" , target_pointer_width = "32" ) ) ] {
5525
+ if #[ cfg( target_pointer_width = "32" ) ] {
5526
5526
mod b32;
5527
5527
pub use self :: b32:: * ;
5528
- } else if #[ cfg( any ( target_arch = "x86_64" , target_arch = "aarch64" ) ) ] {
5528
+ } else if #[ cfg( target_pointer_width = "64" ) ] {
5529
5529
mod b64;
5530
5530
pub use self :: b64:: * ;
5531
5531
} else {
You can’t perform that action at this time.
0 commit comments