Fix clippy warnings (#214)

* Fix clippy warnings

* Fix implicitly elided lifetimes
This commit is contained in:
Gnome!
2024-01-03 16:45:23 +00:00
committed by GitHub
parent d681b71b1f
commit 1b98c30746
15 changed files with 36 additions and 40 deletions

View File

@@ -259,7 +259,7 @@ pub fn mix_symph_indiv(
#[inline]
fn mix_over_ref(
source: &AudioBufferRef,
source: &AudioBufferRef<'_>,
target: &mut AudioBuffer<f32>,
source_pos: usize,
dest_pos: usize,
@@ -397,7 +397,7 @@ fn mix_resampled(
#[inline]
pub(crate) fn copy_into_resampler(
source: &AudioBufferRef,
source: &AudioBufferRef<'_>,
target: &mut AudioBuffer<f32>,
source_pos: usize,
dest_pos: usize,