Skip to content

Commit

Permalink
Rollup merge of rust-lang#104933 - RalfJung:interpret-partial-ord, r=…
Browse files Browse the repository at this point in the history
…oli-obk

interpret: remove PartialOrd from a bunch of types that do not have or need a sensible order

r? `@oli-obk`
  • Loading branch information
matthiaskrgr authored Nov 28, 2022
2 parents a7b3e21 + 4697e63 commit bae384c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concurrency/data_race.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl ThreadClockSet {

/// Error returned by finding a data race
/// should be elaborated upon.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
pub struct DataRace;

/// Externally stored memory cell clocks
Expand Down

0 comments on commit bae384c

Please sign in to comment.