mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
nak: fix clippy::clone_on_copy warnings
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27234>
This commit is contained in:
parent
e7a059794e
commit
cce0a42dcd
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ pub trait BlockLiveness {
|
|||
}
|
||||
|
||||
// This is the first high point
|
||||
let vec_dst_live = live.clone();
|
||||
let vec_dst_live = live;
|
||||
|
||||
// Use a hash set because sources may occur more than once
|
||||
let mut killed = HashSet::new();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue