Skip to content

Commit 3e3c292

Browse files
committed
solaris defs missing
1 parent 5b6bab0 commit 3e3c292

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/lib.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -278,10 +278,7 @@ cfg_if! {
278278
}
279279

280280
cfg_if! {
281-
if#[cfg(target_os = "solaris")] {
282-
mod unix;
283-
pub use unix::*;
284-
} else if #[cfg(windows)] {
281+
if #[cfg(windows)] {
285282
mod windows;
286283
pub use windows::*;
287284
} else if #[cfg(target_os = "redox")] {
@@ -298,7 +295,5 @@ cfg_if! {
298295
pub use unix::*;
299296
} else {
300297
// Unknown target_family
301-
mod unix;
302-
pub use unix::*;
303298
}
304299
}

0 commit comments

Comments
 (0)