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
Enable clippy::clone_on_ref_ptr lint and fix all violations (#7262)
## Summary
- Adds `clone_on_ref_ptr = "deny"` to `[workspace.lints.clippy]` in the
root `Cargo.toml`
- Fixes all ~450 violations across 126 files by replacing `x.clone()` on
`Arc`/`Rc`/`Weak` with explicit `Arc::clone(&x)` (or turbofish
`Arc::<T>::clone(&x)` where type coercion is needed)
- No `#[allow]` suppressions anywhere
Signed-off-by: Joseph Isaacs <joseph@spiraldb.com>
0 commit comments