Module: Mesa Branch: main Commit: 54c74164a8b9600fac3acdfd5c26247cb7e46e0c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=54c74164a8b9600fac3acdfd5c26247cb7e46e0c
Author: LingMan <[email protected]> Date: Sat Oct 14 03:15:26 2023 +0200 rusticl: drop an `#[allow(dead_code)]` marker These aliases are all in use. Reviewed-by: Karol Herbst <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25669> --- src/gallium/frontends/rusticl/api/types.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gallium/frontends/rusticl/api/types.rs b/src/gallium/frontends/rusticl/api/types.rs index cd681f324c1..81e10bd686a 100644 --- a/src/gallium/frontends/rusticl/api/types.rs +++ b/src/gallium/frontends/rusticl/api/types.rs @@ -17,7 +17,6 @@ macro_rules! cl_callback { ($cb:ident($fn_alias:ident) { $($p:ident : $ty:ty,)* }) => { - #[allow(dead_code)] pub type $fn_alias = unsafe extern "C" fn( $($p: $ty,)* );
