Skip to content

Commit bae384c

Browse files
authored
Rollup merge of rust-lang#104933 - RalfJung:interpret-partial-ord, r=oli-obk
interpret: remove PartialOrd from a bunch of types that do not have or need a sensible order r? `@oli-obk`
2 parents a7b3e21 + 4697e63 commit bae384c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/concurrency/data_race.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ impl ThreadClockSet {
158158

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

164164
/// Externally stored memory cell clocks

0 commit comments

Comments
 (0)