Skip to content

Commit

Permalink
Remove unneeded import
Browse files Browse the repository at this point in the history
Fixes clippy::legacy_numeric_constants.
  • Loading branch information
Thomasdezeeuw committed Apr 24, 2024
1 parent df59ff6 commit a508c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys/unix/selector/epoll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::os::unix::io::{AsRawFd, RawFd};
#[cfg(debug_assertions)]
use std::sync::atomic::{AtomicUsize, Ordering};
use std::time::Duration;
use std::{cmp, i32, io, ptr};
use std::{cmp, io, ptr};

/// Unique id for use as `SelectorId`.
#[cfg(debug_assertions)]
Expand Down

0 comments on commit a508c78

Please sign in to comment.