From a5e10f416bd6360350c29a006439480ff8cc664d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 5 Aug 2024 10:11:31 +0300 Subject: [PATCH] Ignore a new 1.80 clippy warning Part-of: --- gstreamer/src/miniobject.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/gstreamer/src/miniobject.rs b/gstreamer/src/miniobject.rs index 2e4eb731e..a69cdc6f8 100644 --- a/gstreamer/src/miniobject.rs +++ b/gstreamer/src/miniobject.rs @@ -522,6 +522,7 @@ macro_rules! mini_object_wrapper ( impl $crate::glib::types::StaticType for $ref_name { #[inline] fn static_type() -> $crate::glib::types::Type { + #[allow(clippy::macro_metavars_in_unsafe)] unsafe { $crate::glib::translate::from_glib($get_type()) } } }