We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6bab0 commit 3e3c292Copy full SHA for 3e3c292
src/lib.rs
@@ -278,10 +278,7 @@ cfg_if! {
278
}
279
280
cfg_if! {
281
- if#[cfg(target_os = "solaris")] {
282
- mod unix;
283
- pub use unix::*;
284
- } else if #[cfg(windows)] {
+ if #[cfg(windows)] {
285
mod windows;
286
pub use windows::*;
287
} else if #[cfg(target_os = "redox")] {
@@ -298,7 +295,5 @@ cfg_if! {
298
295
pub use unix::*;
299
296
} else {
300
297
// Unknown target_family
301
302
303
304
0 commit comments