about summary refs log tree commit diff
path: root/library/std/src/sys/unix/time.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2022-11-19 23:50:57 +0100
committerRalf Jung <post@ralfj.de>2022-11-20 12:13:48 +0100
commitc043a0e7d6f347f9b2c7f08c5b3a179470e0f0c5 (patch)
tree1a5dbedf9b22c9f4e55b24d44fc89fc353b1b1fb /library/std/src/sys/unix/time.rs
parenta689eb0ded45f95d10a02171f5999ca270378eaf (diff)
downloadrust-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.rs4
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"
 )))]