mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-25 13:24:22 +00:00
Remove trivial cast in guaranteed_eq
I found this while accidentally breaking trivial casts in another branch.
This commit is contained in:
parent
ff5664d600
commit
fe9d422e7b
@ -842,7 +842,7 @@ impl<T: ?Sized> *const T {
|
||||
where
|
||||
T: Sized,
|
||||
{
|
||||
match intrinsics::ptr_guaranteed_cmp(self as _, other as _) {
|
||||
match intrinsics::ptr_guaranteed_cmp(self, other) {
|
||||
2 => None,
|
||||
other => Some(other == 1),
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user