summaryrefslogtreecommitdiff
path: root/src/synth/math.rs
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2017-09-24 08:34:58 -0400
committerGraham Northup <grahamnorthup@yahoo.com>2017-09-24 19:01:22 -0400
commit959fed1d8435070e39bd7b87c1e908f79b65add9 (patch)
tree971920997b0ecb58a141ed1d30546cb58975e9ff /src/synth/math.rs
parent7eef21b3b90898f4ef05fa4220fde608cf55c6ab (diff)
Fix compiler warnings
Some minor stuff, mostly. The features have been stable since 1.20
Diffstat (limited to 'src/synth/math.rs')
-rw-r--r--src/synth/math.rs4
1 files changed, 2 insertions, 2 deletions
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<GenBox, GenFactoryError> {
- 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<GenBox, GenFactoryError> {
- 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,