1
Fork 0

Fix unused import for IoSliceMut for macos

This commit is contained in:
LinkTed 2020-09-22 13:18:56 +02:00
parent 31e6e3896d
commit 0fcb834832

View file

@ -1,3 +1,12 @@
#[cfg(any(
target_os = "android",
target_os = "dragonfly",
target_os = "emscripten",
target_os = "freebsd",
target_os = "linux",
target_os = "netbsd",
target_os = "openbsd",
))]
use crate::io::IoSliceMut;
use crate::net::Shutdown;
use crate::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};