We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811d61d commit 6a875b7Copy full SHA for 6a875b7
src/backend/mod.rs
@@ -2647,7 +2647,9 @@ impl ContextOps for AudioUnitContext {
2647
fn backend_id(&mut self) -> &'static CStr {
2648
// https://github.com/rust-lang/rust-clippy/issues/13531
2649
#[allow(clippy::manual_c_str_literals)]
2650
- unsafe { CStr::from_ptr(b"audiounit-rust\0".as_ptr() as *const _) }
+ unsafe {
2651
+ CStr::from_ptr(b"audiounit-rust\0".as_ptr() as *const _)
2652
+ }
2653
}
2654
#[cfg(target_os = "ios")]
2655
fn max_channel_count(&mut self) -> Result<u32> {
0 commit comments