mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
nouveau/bitview: Drop an unneeded lifetime
Reviewed-by: Karol Herbst <kherbst@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36849>
This commit is contained in:
parent
35601cad2b
commit
b5a2791906
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ pub trait SetFieldU64 {
|
|||
fn set_field_u64(&mut self, range: Range<usize>, val: u64);
|
||||
}
|
||||
|
||||
impl<'a, BS: BitMutViewable> SetFieldU64 for BS {
|
||||
impl<BS: BitMutViewable> SetFieldU64 for BS {
|
||||
fn set_field_u64(&mut self, range: Range<usize>, val: u64) {
|
||||
let bits = range.end - range.start;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue