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 unused Box linter warning. #1463

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Commits on Sep 4, 2023

  1. Fix unused Box linter warning.

    `cargo check` is not happy with original code
    ```
        = note: call `drop(Box::from_raw(ptr))` if you intend to drop the `Box`
        = note: `#[warn(unused_must_use)]` on by default
    help: use `let _ = ...` to ignore the resulting value
        |
    151 |             let _ = Box::from_raw(writing);
        |             +++++++
    ```
    and adding `drop` is not only recommended but also makes the intent explicit.
    ttsugriy committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    777b276 View commit details
    Browse the repository at this point in the history