Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix newly added clippy warning #113

Merged
merged 1 commit into from
Dec 8, 2024
Merged

Fix newly added clippy warning #113

merged 1 commit into from
Dec 8, 2024

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.

```
warning: the following explicit lifetimes could be elided: 'a
  --> async-stream/src/yielder.rs:90:6
   |
90 | impl<'a, T> Drop for Enter<'a, T> {
   |      ^^                    ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
   |
90 - impl<'a, T> Drop for Enter<'a, T> {
90 + impl<T> Drop for Enter<'_, T> {
   |

warning: the following explicit lifetimes could be elided: 'a
   --> async-stream/tests/stream.rs:164:19
    |
164 |         fn stream<'a>(&'a self) -> impl Stream<Item = &str> + 'a {
    |                   ^^   ^^                              ^      ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
    |
164 -         fn stream<'a>(&'a self) -> impl Stream<Item = &str> + 'a {
164 +         fn stream(&self) -> impl Stream<Item = &str> + '_ {
    |
```
impl<'a, T> Drop for Enter<'a, T> {
impl<T> Drop for Enter<'_, T> {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I disagree with the warning in this case. :(

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, this is what is also covered in single_use_lifetimes (which is allowed by default), so maybe clippy::needless_lifetimes should not warn it.

https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=351c8940c3d6dd7f311c7a3552280daf

warning: lifetime parameter `'a` only used once
 --> src/lib.rs:7:6
  |
7 | impl<'a, T> Drop for Enter<'a, T> {
  |      ^^ this lifetime...   -- ...is used only here
  |
note: the lint level is defined here
 --> src/lib.rs:1:9
  |
1 | #![warn(single_use_lifetimes)]
  |         ^^^^^^^^^^^^^^^^^^^^
help: elide the single-use lifetime
  |
7 - impl<'a, T> Drop for Enter<'a, T> {
7 + impl<T> Drop for Enter<'_, T> {
  |

@taiki-e taiki-e merged commit 7f9ef66 into master Dec 8, 2024
5 checks passed
@taiki-e taiki-e deleted the taiki-e/ci branch December 8, 2024 16:03
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