From f264d28f2cb941500d89e97a053ae96322c8ed86 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Thu, 28 Sep 2023 12:11:20 -0400 Subject: [PATCH] time: cfg(any(x)) is the same as cfg(x) This was left over in c043a0e7d6f347f9b2c7f08c5b3a179470e0f0c5. --- library/std/src/sys/unix/time.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs index 4fe61b28488..c94a29b510a 100644 --- a/library/std/src/sys/unix/time.rs +++ b/library/std/src/sys/unix/time.rs @@ -217,7 +217,7 @@ impl From<__timespec64> for Timespec { } #[cfg(any( - all(target_os = "macos", any(not(target_arch = "aarch64"))), + all(target_os = "macos", not(target_arch = "aarch64")), target_os = "ios", target_os = "watchos", target_os = "tvos" @@ -338,7 +338,7 @@ mod inner { } #[cfg(not(any( - all(target_os = "macos", any(not(target_arch = "aarch64"))), + all(target_os = "macos", not(target_arch = "aarch64")), target_os = "ios", target_os = "watchos", target_os = "tvos"