Remove unneeded pub(crate)
· patricklam/verify-rust-std@0c56873 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 0c56873
Remove unneeded pub(crate)
File tree
1 file changed
lines changed
- std/src/sys/anonymous_pipe
1 file changed
lines changed
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)> { |