diff options
| author | Ralf Jung <post@ralfj.de> | 2022-11-19 23:50:57 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-11-20 12:13:48 +0100 |
| commit | c043a0e7d6f347f9b2c7f08c5b3a179470e0f0c5 (patch) | |
| tree | 1a5dbedf9b22c9f4e55b24d44fc89fc353b1b1fb /library/std/src/sys/unix/time.rs | |
| parent | a689eb0ded45f95d10a02171f5999ca270378eaf (diff) | |
| download | rust-c043a0e7d6f347f9b2c7f08c5b3a179470e0f0c5.tar.gz rust-c043a0e7d6f347f9b2c7f08c5b3a179470e0f0c5.zip | |
cfg(miri) no longer needed in sys/unix/time.rs
Diffstat (limited to 'library/std/src/sys/unix/time.rs')
| -rw-r--r-- | library/std/src/sys/unix/time.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs index ffcc507d2a7..d5abd9b581c 100644 --- a/library/std/src/sys/unix/time.rs +++ b/library/std/src/sys/unix/time.rs @@ -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" )))] |
