Skip to content

Commit

Permalink
macos, aarch64, and not(miri)
Browse files Browse the repository at this point in the history
  • Loading branch information
maniwani committed Nov 14, 2022
1 parent 015ab65 commit f4f5159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/sys/unix/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ impl From<libc::timespec> for Timespec {
}

#[cfg(any(
all(target_os = "macos", not(target_arch = "aarch64")),
all(target_os = "macos", any(not(target_arch = "aarch64"), miri)),
target_os = "ios",
target_os = "watchos"
))]
Expand Down Expand Up @@ -270,7 +270,7 @@ mod inner {
}

#[cfg(not(any(
all(target_os = "macos", not(target_arch = "aarch64")),
all(target_os = "macos", any(not(target_arch = "aarch64"), miri)),
target_os = "ios",
target_os = "watchos"
)))]
Expand Down

0 comments on commit f4f5159

Please sign in to comment.