diff options
| author | David Tolnay <dtolnay@gmail.com> | 2023-11-23 11:16:10 -0800 |
|---|---|---|
| committer | David Tolnay <dtolnay@gmail.com> | 2023-11-23 11:16:10 -0800 |
| commit | 52c07b9564654603af8972e93682fe887126d090 (patch) | |
| tree | d3b8851eb34e1d7177f7d613291e6bfdd26f975d | |
| parent | 237339fda17395d3e35f3028a0e0aa8278c3a4bf (diff) | |
| download | rust-52c07b9564654603af8972e93682fe887126d090.tar.gz rust-52c07b9564654603af8972e93682fe887126d090.zip | |
Fix tracking issue of Windows ExitCodeExt
| -rw-r--r-- | library/std/src/os/windows/process.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs index d00e79476f3..5bf0154eae3 100644 --- a/library/std/src/os/windows/process.rs +++ b/library/std/src/os/windows/process.rs @@ -347,7 +347,7 @@ impl ChildExt for process::Child { /// /// This trait is sealed: it cannot be implemented outside the standard library. /// This is so that future additional methods are not breaking changes. -#[unstable(feature = "windows_process_exit_code_from", issue = "none")] +#[unstable(feature = "windows_process_exit_code_from", issue = "111688")] pub trait ExitCodeExt: Sealed { /// Creates a new `ExitCode` from the raw underlying `u32` return value of /// a process. @@ -355,11 +355,11 @@ pub trait ExitCodeExt: Sealed { /// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE` /// macro returned from the `GetExitCodeProcess` function to signal that the /// process has yet to run to completion. - #[unstable(feature = "windows_process_exit_code_from", issue = "none")] + #[unstable(feature = "windows_process_exit_code_from", issue = "111688")] fn from_raw(raw: u32) -> Self; } -#[unstable(feature = "windows_process_exit_code_from", issue = "none")] +#[unstable(feature = "windows_process_exit_code_from", issue = "111688")] impl ExitCodeExt for process::ExitCode { fn from_raw(raw: u32) -> Self { process::ExitCode::from_inner(From::from(raw)) |
