Skip to content

Commit 01494da

Browse files
committed
impl Default for ExitCode
As suggested here #106425 (comment)
1 parent 139b49b commit 01494da

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

library/std/src/process.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1890,6 +1890,14 @@ impl ExitCode {
18901890
}
18911891
}
18921892

1893+
/// The default value is [`ExitCode::SUCCESS`]
1894+
#[stable(feature = "process-exitcode-default", since = "CURRENT_RUSTC_VERSION")]
1895+
impl Default for ExitCode {
1896+
fn default() -> Self {
1897+
ExitCode::SUCCESS
1898+
}
1899+
}
1900+
18931901
#[stable(feature = "process_exitcode", since = "1.61.0")]
18941902
impl From<u8> for ExitCode {
18951903
/// Construct an `ExitCode` from an arbitrary u8 value.

0 commit comments

Comments
 (0)