Remove useless `all` in cfg

This commit is contained in:
Mateusz Mikuła 2020-10-08 21:54:59 +02:00
parent 0c97c24a6c
commit 8818fda7f0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ extern "C" {
}
cfg_if::cfg_if! {
if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm"))))] {
if #[cfg(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm")))] {
// Not ARM EHABI
#[repr(C)]
#[derive(Copy, Clone, PartialEq)]