Skip to content

Fix newly added clippy warning#147

Merged
taiki-e merged 1 commit intomasterfrom
taiki-e/ci
Dec 8, 2024
Merged

Fix newly added clippy warning#147
taiki-e merged 1 commit intomasterfrom
taiki-e/ci

Conversation

@taiki-e
Copy link
Member

@taiki-e taiki-e commented Dec 8, 2024

Fixes clippy warning added in Rust 1.83.

See commit message for the content of warning.

```
error: the following explicit lifetimes could be elided: 'a
   --> src/lib.rs:212:6
    |
212 | impl<'a, T> Clone for Iter<'a, T> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `-D clippy::needless-lifetimes` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
    |
212 - impl<'a, T> Clone for Iter<'a, T> {
212 + impl<T> Clone for Iter<'_, T> {
    |
```
@taiki-e taiki-e merged commit 30e8dd7 into master Dec 8, 2024
@taiki-e taiki-e deleted the taiki-e/ci branch December 8, 2024 11:51
@paolobarbolini paolobarbolini mentioned this pull request Jun 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants