From 959fed1d8435070e39bd7b87c1e908f79b65add9 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Sun, 24 Sep 2017 08:34:58 -0400 Subject: Fix compiler warnings Some minor stuff, mostly. The features have been stable since 1.20 --- src/synth/math.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/synth/math.rs') diff --git a/src/synth/math.rs b/src/synth/math.rs index eb1a604..2b81786 100644 --- a/src/synth/math.rs +++ b/src/synth/math.rs @@ -108,7 +108,7 @@ pub struct NegateFactory; impl GeneratorFactory for NegateFactory { fn new(&self, params: &mut FactoryParameters) -> Result { - let mut gen = params.remove_param("value", 0)?.as_gen()?; + let gen = params.remove_param("value", 0)?.as_gen()?; let len = gen.buffer().len(); Ok(Box::new(Negate { value: gen, @@ -150,7 +150,7 @@ pub struct ReciprocateFactory; impl GeneratorFactory for ReciprocateFactory { fn new(&self, params: &mut FactoryParameters) -> Result { - let mut gen = params.remove_param("value", 0)?.as_gen()?; + let gen = params.remove_param("value", 0)?.as_gen()?; let len = gen.buffer().len(); Ok(Box::new(Reciprocate { value: gen, -- cgit v1.2.3-70-g09d2