about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-07-27 11:37:15 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-07-30 15:39:13 -0500
commitea009939904021aaba59f9ca8038b646a65a27d6 (patch)
tree9176666ee9ca753a5bdbd71a8705bf441481a885 /src/libstd/sys
parentb38953709d75178db30020c29be0cb4ff2e4be5b (diff)
downloadrust-ea009939904021aaba59f9ca8038b646a65a27d6.tar.gz
rust-ea009939904021aaba59f9ca8038b646a65a27d6.zip
remove some `any`s that are no longer necessary
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/unix/thread.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/unix/thread.rs b/src/libstd/sys/unix/thread.rs
index 65ebce0baa2..1061ca87f64 100644
--- a/src/libstd/sys/unix/thread.rs
+++ b/src/libstd/sys/unix/thread.rs
@@ -171,7 +171,7 @@ impl Drop for Thread {
     }
 }
 
-#[cfg(all(not(all(target_os = "linux", not(any(target_env = "musl")))),
+#[cfg(all(not(all(target_os = "linux", not(target_env = "musl"))),
           not(target_os = "freebsd"),
           not(target_os = "macos"),
           not(target_os = "bitrig"),
@@ -185,7 +185,7 @@ pub mod guard {
 }
 
 
-#[cfg(any(all(target_os = "linux", not(any(target_env = "musl"))),
+#[cfg(any(all(target_os = "linux", not(target_env = "musl")),
           target_os = "freebsd",
           target_os = "macos",
           target_os = "bitrig",