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

Update r2r from 0.8 to 0.9 #50

Merged
merged 2 commits into from
May 21, 2024
Merged

Update r2r from 0.8 to 0.9 #50

merged 2 commits into from
May 21, 2024

Commits on May 20, 2024

  1. Update r2r from 0.8 to 0.9

    taiki-e committed May 20, 2024
    Configuration menu
    Copy the full SHA
    5816475 View commit details
    Browse the repository at this point in the history
  2. Fix clippy::assigning_clones warning

    ```
    error: assigning the result of `Clone::clone()` may be inefficient
       --> tf_rosrust/src/tf_buffer.rs:158:21
        |
    158 |                     first = intermediate.clone();
        |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `first.clone_from(&intermediate)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
        = note: `-D clippy::assigning-clones` implied by `-D warnings`
        = help: to override `-D warnings` add `#[allow(clippy::assigning_clones)]`
    ```
    taiki-e committed May 20, 2024
    Configuration menu
    Copy the full SHA
    bdfb29f View commit details
    Browse the repository at this point in the history