Skip to content

Commit b77d087

Browse files
committed
very minor cleanup
1 parent a3b7ffc commit b77d087

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/dsp/interop.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ use std::ffi::{c_char, c_int, c_uint, c_void, CString};
88
use std::ptr::{slice_from_raw_parts, slice_from_raw_parts_mut};
99
use std::str::FromStr;
1010

11-
// and now the fun stuff
12-
1311
// wrapping DSPs into FMOD's format
1412

1513
#[macro_export]
@@ -39,7 +37,7 @@ macro_rules! expose_dsp {
3937
#[unsafe(no_mangle)]
4038
#[allow(static_mut_refs)]
4139
unsafe extern "C" fn FMODGetDSPDescription() -> *const FMOD_DSP_DESCRIPTION {
42-
unsafe { paste!([<$t DESC>]).write(interop::into_desc::<$t>()) }
40+
unsafe { paste!([<$t _ DESC>]).write(interop::into_desc::<$t>()) }
4341
}
4442
};
4543
};

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use effects::vocoder::Vocoder;
88

99
#[cfg(test)]
1010
pub mod fmod;
11-
// accessed in test mod by noise_reduction
1211
#[cfg(test)]
1312
pub mod simulate;
1413

0 commit comments

Comments
 (0)