dsp: clippy

This commit is contained in:
Robert Jördens 2021-02-01 18:24:51 +01:00
parent 9ee60824d4
commit 5d7266abbc
2 changed files with 2 additions and 3 deletions

View File

@ -52,8 +52,8 @@ impl IIR {
Self {
ba: Vec5([gain, 0., 0., 0., 0.]),
y_offset: 0.,
y_min: y_min,
y_max: y_max,
y_min,
y_max,
}
}

View File

@ -16,7 +16,6 @@ impl Lockin {
Self {
iir: IIR {
ba,
..Default::default()
},
state: [Vec5::default(); 2],
}