Skip to content

Commit

Permalink
compile
Browse files Browse the repository at this point in the history
  • Loading branch information
vsandstrom committed Aug 31, 2024
1 parent 75764ab commit 96e22aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ struct HavregrynParams {
#[id = "resample"]
pub resample: BoolParam,

pub color: AtomicBool,
// #[allow(unused)]
// pub color: AtomicBool,
}

impl<const NUMGRAINS: usize, const BUFSIZE: usize> Default for Havregryn<NUMGRAINS, BUFSIZE> { fn default() -> Self {
Expand Down Expand Up @@ -190,7 +191,7 @@ impl Default for HavregrynParams {
false
),

color: AtomicBool::new(false)
// color: AtomicBool::new(false)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/random/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mod tests {

#[test]
fn poll() {
let rnd = Random::new(48000.0);
let _rnd = Random::new(48000.0);


}
Expand Down

0 comments on commit 96e22aa

Please sign in to comment.