Skip to content

Commit

Permalink
more coherent ordering of target_os attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Mar 10, 2021
1 parent 9e20f22 commit c058966
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ pub use ios::{that, with};
pub use unix::{that, with};

#[cfg(not(any(
target_os = "dragonfly",
target_os = "linux",
target_os = "android",
target_os = "freebsd",
target_os = "ios",
target_os = "linux",
target_os = "macos",
target_os = "dragonfly",
target_os = "netbsd",
target_os = "openbsd",
target_os = "solaris",
target_os = "ios",
target_os = "macos",
target_os = "windows",
)))]
compile_error!("open is not supported on this platform");
Expand Down

0 comments on commit c058966

Please sign in to comment.