Skip to content

Commit

Permalink
Remove unneeded pub(crate)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDenton committed Jul 31, 2024
1 parent ba65c6c commit 0c56873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/src/sys/anonymous_pipe/unsupported.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::io;
use crate::pipe::{PipeReader, PipeWriter};
use crate::process::Stdio;
pub(crate) use crate::sys::pipe::AnonPipe;
pub use crate::sys::pipe::AnonPipe;

#[inline]
pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {
Expand Down

0 comments on commit 0c56873

Please sign in to comment.