Skip to content

Commit b149d16

Browse files
committed
Deduplicate std::process Default impl feature names
error[E0711]: feature `process-exitcode-default` is declared stable since 1.74.0-beta.1, but was previously declared stable since 1.73.0 --> library/std/src/process.rs:1964:1 | 1964 | #[stable(feature = "process-exitcode-default", since = "CURRENT_RUSTC_VERSION")] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1 parent b8f6d48 commit b149d16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/process.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ impl From<io::Stderr> for Stdio {
15941594
pub struct ExitStatus(imp::ExitStatus);
15951595

15961596
/// The default value is one which indicates successful completion.
1597-
#[stable(feature = "process-exitcode-default", since = "1.73.0")]
1597+
#[stable(feature = "process_exitstatus_default", since = "1.73.0")]
15981598
impl Default for ExitStatus {
15991599
fn default() -> Self {
16001600
// Ideally this would be done by ExitCode::default().into() but that is complicated.
@@ -1961,7 +1961,7 @@ impl ExitCode {
19611961
}
19621962

19631963
/// The default value is [`ExitCode::SUCCESS`]
1964-
#[stable(feature = "process-exitcode-default", since = "CURRENT_RUSTC_VERSION")]
1964+
#[stable(feature = "process_exitcode_default", since = "CURRENT_RUSTC_VERSION")]
19651965
impl Default for ExitCode {
19661966
fn default() -> Self {
19671967
ExitCode::SUCCESS

0 commit comments

Comments
 (0)