mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-02 01:33:47 +00:00
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:
parent
f1b6cd541b
commit
b2d6c53ac1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue