diff options
author | thajohns <thajohns@clarkson.edu> | 2021-09-09 01:15:22 -0400 |
---|---|---|
committer | Graham Northup <grahamnorthup@yahoo.com> | 2021-09-10 04:05:55 -0400 |
commit | d6e399973e9bc6447a28b80cacffcbc6a768f1ed (patch) | |
tree | 772939eb5d49bdb6ee8e5d632f2224867f6e817d /src/monitor.rs | |
parent | ee11b17c0e2796bd3d843a8a516c12453af75927 (diff) |
got pre-linking steps working, removed glob includes
Diffstat (limited to 'src/monitor.rs')
-rw-r--r-- | src/monitor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monitor.rs b/src/monitor.rs index ffe688a..bde5b37 100644 --- a/src/monitor.rs +++ b/src/monitor.rs @@ -1,6 +1,6 @@ use super::*; -use synth::SampleBuffer; use std::collections::HashMap; +use synth::SampleBuffer; pub struct VoiceDatum { pitch: Pitch, @@ -35,4 +35,4 @@ pub trait Monitor { fn process(&mut self, data: &Data); } -pub type MonBox = Box<Monitor>; +pub type MonBox = Box<dyn Monitor>; |