Skip to content

Inline tail-recursive operations #138

Inline tail-recursive operations

Inline tail-recursive operations #138

Triggered via pull request November 15, 2024 21:52
Status Failure
Total duration 1m 22s
Artifacts

safety.yml

on: pull_request
Fit to window
Zoom out
Zoom in

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> |