From 227d106aec8e127b51f422966b1412415e1925f6 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Tue, 15 Feb 2022 14:03:26 +0100 Subject: [PATCH] remove compiler warnings --- library/std/src/sys/hermit/fd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/sys/hermit/fd.rs b/library/std/src/sys/hermit/fd.rs index 1179a49c22fd0..c400f5f2c2e84 100644 --- a/library/std/src/sys/hermit/fd.rs +++ b/library/std/src/sys/hermit/fd.rs @@ -1,6 +1,6 @@ #![unstable(reason = "not public", issue = "none", feature = "fd")] -use crate::io::{self, Read, ReadBuf}; +use crate::io::{self, Read}; use crate::mem; use crate::sys::cvt; use crate::sys::hermit::abi;