audiofx: Fix Nightly mismatched_lifetime_syntaxes lint

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2291>
This commit is contained in:
L. E. Segovia 2025-06-12 18:07:00 -03:00
parent f1b6cd541b
commit b2d6c53ac1

View file

@ -22,7 +22,7 @@ impl RingBuffer {
}
}
pub fn iter(&mut self, delay: usize) -> RingBufferIter {
pub fn iter(&mut self, delay: usize) -> RingBufferIter<'_> {
RingBufferIter::new(self, delay)
}
}