From 150d71cae770598ade7e09419150f1218e961128 Mon Sep 17 00:00:00 2001
From: Corey Richardson <corey@octayn.net>
Date: Sun, 24 Sep 2017 09:18:26 -0400
Subject: Fix more style things

All reported by clippy. Mostly stuff like unnecessary lifetimes
or references.
---
 src/synth/noise.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/synth/noise.rs')

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)
     }
-- 
cgit v1.2.3-70-g09d2