Inline tail-recursive operations #138
safety.yml
on: pull_request
sanitizers
1m 8s
miri
1m 9s
Annotations
2 errors and 4 warnings
miri
Process completed with exit code 101.
|
sanitizers
Process completed with exit code 101.
|
[clippy] src/raw/mod.rs#L586:
src/raw/mod.rs#L586
warning: this lifetime isn't used in the function definition
--> src/raw/mod.rs:586:27
|
586 | unsafe fn insert_slow<'g>(
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
= note: `#[warn(clippy::extra_unused_lifetimes)]` on by default
|
[clippy] src/raw/mod.rs#L1045:
src/raw/mod.rs#L1045
warning: the following explicit lifetimes could be elided: 'g
--> src/raw/mod.rs:1045:17
|
1045 | pub fn iter<'g, G>(mut self, guard: &'g G) -> Iter<'g, K, V, G>
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1045 - pub fn iter<'g, G>(mut self, guard: &'g G) -> Iter<'g, K, V, G>
1045 + pub fn iter<G>(mut self, guard: &G) -> Iter<'_, K, V, G>
|
|
[clippy] src/raw/mod.rs#L586:
src/raw/mod.rs#L586
warning: this lifetime isn't used in the function definition
--> src/raw/mod.rs:586:27
|
586 | unsafe fn insert_slow<'g>(
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
= note: `#[warn(clippy::extra_unused_lifetimes)]` on by default
|
[clippy] src/raw/mod.rs#L1045:
src/raw/mod.rs#L1045
warning: the following explicit lifetimes could be elided: 'g
--> src/raw/mod.rs:1045:17
|
1045 | pub fn iter<'g, G>(mut self, guard: &'g G) -> Iter<'g, K, V, G>
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1045 - pub fn iter<'g, G>(mut self, guard: &'g G) -> Iter<'g, K, V, G>
1045 + pub fn iter<G>(mut self, guard: &G) -> Iter<'_, K, V, G>
|
|