Skip to content

Commit

Permalink
x.py fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Feb 24, 2021
1 parent 94e75ac commit 7d5242a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/std/src/sys/wasi/fs.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![deny(unsafe_op_in_unsafe_fn)]

use super::fd::WasiFd;
use crate::ffi::{CStr, CString, OsStr, OsString};
use crate::fmt;
use crate::io::{self, IoSlice, IoSliceMut, SeekFrom};
Expand All @@ -9,7 +10,6 @@ use crate::os::wasi::ffi::{OsStrExt, OsStringExt};
use crate::path::{Path, PathBuf};
use crate::ptr;
use crate::sync::Arc;
use super::fd::WasiFd;
use crate::sys::time::SystemTime;
use crate::sys::unsupported;
use crate::sys_common::FromInner;
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/wasi/net.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#![deny(unsafe_op_in_unsafe_fn)]

use super::fd::WasiFd;
use crate::convert::TryFrom;
use crate::fmt;
use crate::io::{self, IoSlice, IoSliceMut};
use crate::net::{Ipv4Addr, Ipv6Addr, Shutdown, SocketAddr};
use super::fd::WasiFd;
use crate::sys::{unsupported, Void};
use crate::sys_common::FromInner;
use crate::time::Duration;
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/wasi/stdio.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#![deny(unsafe_op_in_unsafe_fn)]

use super::fd::WasiFd;
use crate::io::{self, IoSlice, IoSliceMut};
use crate::mem::ManuallyDrop;
use super::fd::WasiFd;

pub struct Stdin;
pub struct Stdout;
Expand Down

0 comments on commit 7d5242a

Please sign in to comment.