Skip to content

Commit a1a3773

Browse files
committed
Auto merge of rust-lang#118218 - dtolnay:exitcodeext, r=compiler-errors
Fix tracking issue of Windows ExitCodeExt Tracking issue: rust-lang#111688 This was left out of the initial ExitCodeExt implementation in rust-lang#97917.
2 parents a4a5c97 + 52c07b9 commit a1a3773

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/os/windows/process.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -347,19 +347,19 @@ impl ChildExt for process::Child {
347347
///
348348
/// This trait is sealed: it cannot be implemented outside the standard library.
349349
/// This is so that future additional methods are not breaking changes.
350-
#[unstable(feature = "windows_process_exit_code_from", issue = "none")]
350+
#[unstable(feature = "windows_process_exit_code_from", issue = "111688")]
351351
pub trait ExitCodeExt: Sealed {
352352
/// Creates a new `ExitCode` from the raw underlying `u32` return value of
353353
/// a process.
354354
///
355355
/// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE`
356356
/// macro returned from the `GetExitCodeProcess` function to signal that the
357357
/// process has yet to run to completion.
358-
#[unstable(feature = "windows_process_exit_code_from", issue = "none")]
358+
#[unstable(feature = "windows_process_exit_code_from", issue = "111688")]
359359
fn from_raw(raw: u32) -> Self;
360360
}
361361

362-
#[unstable(feature = "windows_process_exit_code_from", issue = "none")]
362+
#[unstable(feature = "windows_process_exit_code_from", issue = "111688")]
363363
impl ExitCodeExt for process::ExitCode {
364364
fn from_raw(raw: u32) -> Self {
365365
process::ExitCode::from_inner(From::from(raw))

0 commit comments

Comments
 (0)