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 9169622 commit e84a7d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/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 e84a7d9

Please sign in to comment.