fix warnings

This commit is contained in:
🪞👃🪞 2025-05-10 21:44:36 +03:00
parent 2ef9628ab8
commit e5752ea4b0
13 changed files with 16 additions and 22 deletions

View file

@ -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)