Skip to content

Commit fbf3bdc

Browse files
authored
Update unsupported.rs
1 parent 11dcc5a commit fbf3bdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {
77
Err(io::Error::UNSUPPORTED_PLATFORM)
88
}
99

10-
#[unstable(feature = "anonymous_pipe", issue = "127154")]
10+
#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")]
1111
impl From<PipeReader> for Stdio {
1212
fn from(pipe: PipeReader) -> Self {
1313
pipe.0.diverge()
1414
}
1515
}
1616

17-
#[unstable(feature = "anonymous_pipe", issue = "127154")]
17+
#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")]
1818
impl From<PipeWriter> for Stdio {
1919
fn from(pipe: PipeWriter) -> Self {
2020
pipe.0.diverge()

0 commit comments

Comments
 (0)