Skip to content

Commit 9fe101b

Browse files
committed
Remove unused import from sys/pal/hermit/os.rs
This fixes ``` error: unused import: `str` --> library/std/src/sys/pal/hermit/os.rs:6:22 | 6 | use crate::{fmt, io, str}; | ^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]` ``` This was caused by 845311a.
1 parent f4665ab commit 9fe101b

File tree

1 file changed

+1
-1
lines changed
  • library/std/src/sys/pal/hermit

1 file changed

+1
-1
lines changed

library/std/src/sys/pal/hermit/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use crate::ffi::{OsStr, OsString};
33
use crate::marker::PhantomData;
44
use crate::path::{self, PathBuf};
55
use crate::sys::unsupported;
6-
use crate::{fmt, io, str};
6+
use crate::{fmt, io};
77

88
pub fn errno() -> i32 {
99
unsafe { hermit_abi::get_errno() }

0 commit comments

Comments
 (0)