mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 13:50:11 +01:00
nak: drop unnecessary reference on both sides of ==
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
parent
e0c5b40561
commit
9f830f622f
1 changed files with 1 additions and 1 deletions
|
|
@ -308,7 +308,7 @@ fn test_ssa_ref_round_trip() {
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let ssa_ref = SSARef::new(&vec);
|
let ssa_ref = SSARef::new(&vec);
|
||||||
assert!(&ssa_ref[..] == &vec[..]);
|
assert!(ssa_ref[..] == vec[..]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue