Remove unneeded pub(crate) · model-checking/verify-rust-std@0c56873 (original) (raw)

Skip to content

Sign in

Appearance settings

View all features

View all solutions

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Sign in

Sign up

Appearance settings

model-checking / verify-rust-std Public

forked from rust-lang/rust

Additional navigation options

Commit 0c56873

Browse files

ChrisDentonChrisDenton

committed

Remove unneeded pub(crate)

1 parent ba65c6c commit 0c56873

File tree

1 file changed

1

-

1

lines changed

1 file changed

1

-

1

lines changed

‎std/src/sys/anonymous_pipe/unsupported.rs‎

Lines changed: 1 addition & 1 deletion

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1 1 use crate::io;
2 2 use crate::pipe::{PipeReader, PipeWriter};
3 3 use crate::process::Stdio;
4 -pub(crate) use crate::sys::pipe::AnonPipe;
4 +pub use crate::sys::pipe::AnonPipe;
5 5
6 6 #[inline]
7 7 pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {

0 commit comments

Comments

(0)