Skip to content

Commit

Permalink
Fix unused import warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomasdezeeuw committed Dec 8, 2023
1 parent c8cea3e commit 736ac94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sys/windows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mod overlapped;
use overlapped::Overlapped;

mod selector;
pub use selector::{Selector, SelectorInner, SockState};
pub use selector::Selector;

// Macros must be defined before the modules that use them
cfg_net! {
Expand All @@ -35,6 +35,8 @@ cfg_net! {

pub(crate) mod tcp;
pub(crate) mod udp;

pub use selector::{SelectorInner, SockState};
}

cfg_os_ext! {
Expand Down

0 comments on commit 736ac94

Please sign in to comment.