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

Remove unstable read-initializer feature #2534

Merged
merged 2 commits into from Dec 18, 2021
Merged

Commits on Dec 18, 2021

  1. Copy the full SHA
    2074db4 View commit details
    Browse the repository at this point in the history
  2. Fix clippy::return_self_not_must_use warning

    ```text
    error: missing `#[must_use]` attribute on a method returning `Self`
      --> futures-util/src/stream/select_with_strategy.rs:19:5
       |
    19 | /     pub fn toggle(&mut self) -> Self {
    20 | |         let old = *self;
    21 | |
    22 | |         match self {
    ...  |
    27 | |         old
    28 | |     }
       | |_____^
       |
    ```
    taiki-e committed Dec 18, 2021
    Copy the full SHA
    8df0fc3 View commit details
    Browse the repository at this point in the history