Skip to content

Commit

Permalink
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
Browse files Browse the repository at this point in the history
stabilize windows_process_extensions_raw_arg

Stabilizes the feature tracked at #92939
  • Loading branch information
Dylan-DPC authored Apr 4, 2022
2 parents d5139f4 + 66e05c2 commit c56cbf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/os/windows/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub trait CommandExt: Sealed {
///
/// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow
/// `CommandLineToArgvW` escaping rules.
#[unstable(feature = "windows_process_extensions_raw_arg", issue = "29494")]
#[stable(feature = "windows_process_extensions_raw_arg", since = "1.62.0")]
fn raw_arg<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut process::Command;
}

Expand Down

0 comments on commit c56cbf9

Please sign in to comment.