Skip to content

Commit

Permalink
cfg(miri) no longer needed in sys/unix/time.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Nov 20, 2022
1 parent a689eb0 commit c043a0e
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", any(not(target_arch = "aarch64"), miri)),
all(target_os = "macos", any(not(target_arch = "aarch64"))),
target_os = "ios",
target_os = "watchos"
))]
Expand Down Expand Up @@ -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"
)))]
Expand Down

0 comments on commit c043a0e

Please sign in to comment.