You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Apply clippy fixes and code improvements
- Use clamp() instead of manual min/max patterns
- Use while let instead of loop with match
- Mark unsafe extern C functions as unsafe
- Remove redundant field initialization (speaker: speaker -> speaker)
- Use is_multiple_of() instead of modulo comparison
- Remove unnecessary mut keyword
- Collapse nested if let patterns
- Apply various other clippy suggestions
Co-Authored-By: unknown <>
* Fix: restore mut keyword for platform-specific builder reassignment
The builder variable is reassigned in cfg(target_os = macos) and
cfg(target_os = windows) blocks, so mut is required. Added
#[allow(unused_mut)] to suppress the warning on Linux where these
blocks are not compiled.
Co-Authored-By: unknown <>
---------
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
0 commit comments