Appease Clippy.

This commit is contained in:
Nolan Darilek 2024-12-03 10:15:11 -06:00
parent 2f85dcda91
commit 224a4043e2

View File

@ -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<S> Default for SoundPlugins<'_, S> {
fn default() -> Self {
Self(std::marker::PhantomData)
}