Skip to content

Commit

Permalink
[library/std/src/process.rs] PartialEq & Eq for ExitCode
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelMarks committed Jul 12, 2024
1 parent a18fbd0 commit 79855bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1979,7 +1979,7 @@ impl crate::error::Error for ExitStatusError {}
/// ExitCode::SUCCESS
/// }
/// ```
#[derive(Clone, Copy, Debug)]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[stable(feature = "process_exitcode", since = "1.61.0")]
pub struct ExitCode(imp::ExitCode);

Expand Down

0 comments on commit 79855bb

Please sign in to comment.