diff options
Diffstat (limited to 'src/synth/param.rs')
-rw-r--r-- | src/synth/param.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/param.rs b/src/synth/param.rs index 859f789..b020574 100644 --- a/src/synth/param.rs +++ b/src/synth/param.rs @@ -12,7 +12,7 @@ impl Generator for Param { self.buf.set(*params.vars.get(&self.name).unwrap_or(&self.default)); &self.buf } - fn buffer<'a>(&'a self) -> &'a SampleBuffer { &self.buf } + fn buffer(&self) -> &SampleBuffer { &self.buf } fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer { mem::replace(&mut self.buf, buf) } |