Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AldaronLau committed Oct 14, 2024
1 parent 7bfa778 commit d6a8f0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
use alloc::{
boxed::Box,
slice::{Iter, IterMut},
vec::{self, Vec},
vec,
vec::Vec,
};
use core::{
convert::TryInto, fmt::Debug, mem::size_of, num::NonZeroU32,
Expand Down
2 changes: 1 addition & 1 deletion src/stream/speex.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// FIXME: Once remove macros, can delete
#![allow(trivial_casts, trivial_numeric_casts)]

use alloc::vec::{self, Vec};
use alloc::{vec, vec::Vec};
use core::{f64::consts::PI, mem};

#[cfg(not(test))]
Expand Down

0 comments on commit d6a8f0d

Please sign in to comment.