From 224a4043e2e4b07001f4a2922154bf78f8af52f3 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 3 Dec 2024 10:15:11 -0600 Subject: [PATCH] Appease Clippy. --- src/sound/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/mod.rs b/src/sound/mod.rs index 69cf506..9d46395 100644 --- a/src/sound/mod.rs +++ b/src/sound/mod.rs @@ -22,7 +22,7 @@ pub use volumetric::Volumetric; pub struct SoundPlugins<'a, S>(std::marker::PhantomData<&'a S>); -impl<'a, S> Default for SoundPlugins<'a, S> { +impl Default for SoundPlugins<'_, S> { fn default() -> Self { Self(std::marker::PhantomData) }