cfg(miri) no longer needed in sys/unix/time.rs

This commit is contained in:
Ralf Jung 2022-11-19 23:50:57 +01:00
parent a689eb0ded
commit c043a0e7d6

View File

@ -150,7 +150,7 @@ impl From<libc::timespec> for Timespec {
}
#[cfg(any(
all(target_os = "macos", any(not(target_arch = "aarch64"), miri)),
all(target_os = "macos", any(not(target_arch = "aarch64"))),
target_os = "ios",
target_os = "watchos"
))]
@ -270,7 +270,7 @@ mod inner {
}
#[cfg(not(any(
all(target_os = "macos", any(not(target_arch = "aarch64"), miri)),
all(target_os = "macos", any(not(target_arch = "aarch64"))),
target_os = "ios",
target_os = "watchos"
)))]