summaryrefslogtreecommitdiff
path: root/src/synth/noise.rs
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2017-09-24 09:18:26 -0400
committerGraham Northup <grahamnorthup@yahoo.com>2017-09-24 19:01:22 -0400
commit150d71cae770598ade7e09419150f1218e961128 (patch)
treea1b0848642fa59f746d9e4587e585a22df0188e2 /src/synth/noise.rs
parent5f1e73ab5bd0709dd408064c06f2717182777537 (diff)
Fix more style things
All reported by clippy. Mostly stuff like unnecessary lifetimes or references.
Diffstat (limited to 'src/synth/noise.rs')
-rw-r--r--src/synth/noise.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/noise.rs b/src/synth/noise.rs
index f241beb..850b75b 100644
--- a/src/synth/noise.rs
+++ b/src/synth/noise.rs
@@ -19,7 +19,7 @@ impl Generator for Noise {
&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)
}