fix partial eq for refined tcb; remains unused

This commit is contained in:
Alwin Berger 2025-05-21 08:22:20 +00:00
parent fc68b55749
commit 08019ae94f

View File

@ -325,7 +325,7 @@ impl PartialEq for RefinedTCB {
#[cfg(feature = "do_hash_notify_state")]
let ret = ret && self.notify_state == other.notify_state;
#[cfg(feature = "do_hash_notify_value")]
let ret = ret && self.notify_state == other.notify_state;
let ret = ret && self.notify_value == other.notify_value;
ret
}
}