mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 04:36:45 +01:00
fix warnings
This commit is contained in:
parent
2ef9628ab8
commit
e5752ea4b0
13 changed files with 16 additions and 22 deletions
|
|
@ -1,6 +1,5 @@
|
|||
//! MIDI sequencer
|
||||
use crate::*;
|
||||
use tek_engine::jack::*;
|
||||
|
||||
pub trait HasSequencer {
|
||||
fn sequencer (&self) -> &impl MidiPlayerApi;
|
||||
|
|
@ -98,7 +97,7 @@ impl Sequencer {
|
|||
}
|
||||
|
||||
impl std::fmt::Debug for Sequencer {
|
||||
fn fmt (&self, f: &mut std::fmt::Formatter<'_>) -> std::result::Result<(), std::fmt::Error> {
|
||||
fn fmt (&self, f: &mut Formatter<'_>) -> std::result::Result<(), std::fmt::Error> {
|
||||
f.debug_struct("Sequencer")
|
||||
.field("clock", &self.clock)
|
||||
.field("play_clip", &self.play_clip)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue