Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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)]` ```
- Loading branch information