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
875: Miri: Fix thread leaks in doctests in utils r=taiki-e a=taiki-e
876: Fix clippy::explicit_auto_deref warning r=taiki-e a=taiki-e
```
warning: deref which would be done by auto-deref
--> crossbeam-epoch/src/atomic.rs:1715:43
|
1715 | let arr: &[MaybeUninit<usize>] = &*owned;
| ^^^^^^ help: try this: `owned`
|
= note: `#[warn(clippy::explicit_auto_deref)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
warning: deref which would be done by auto-deref
--> crossbeam-skiplist/src/base.rs:1045:21
|
1045 | (*n).refs_and_height
| ^^^^ help: try this: `n`
|
= note: `#[warn(clippy::explicit_auto_deref)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
```
Co-authored-by: Taiki Endo <[email protected]>
0 commit comments