mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
rusticl: fix clippy lint having bounds defined in multiple places
Fixes: 734352ddfb ("rusticl/program: some boilerplate code for SPIR-V support")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30410>
This commit is contained in:
parent
eb1f64a01e
commit
7a8b1dc6e5
1 changed files with 2 additions and 2 deletions
|
|
@ -224,9 +224,9 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
pub fn cl_prop<T: CLProp>(v: T) -> Vec<MaybeUninit<u8>>
|
||||
pub fn cl_prop<T>(v: T) -> Vec<MaybeUninit<u8>>
|
||||
where
|
||||
T: Sized,
|
||||
T: CLProp + Sized,
|
||||
{
|
||||
v.cl_vec()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue