openrr / urdf-rs

URDF parser for Rust
Apache License 2.0
30 stars 11 forks source link

Fix newly added clippy warning #54

Closed taiki-e closed 1 year ago

taiki-e commented 1 year ago
warning: the borrowed expression implements the required traits
  --> src/utils.rs:15:15
   |
15 |         .args(&["xacro", "xacro", "--inorder"])
   |               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `["xacro", "xacro", "--inorder"]`
   |
   = note: `#[warn(clippy::needless_borrow)]` on by default
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

warning: the borrowed expression implements the required traits
  --> src/utils.rs:40:23
   |
40 |                 .args(&["pkg", "prefix", "--share"])
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `["pkg", "prefix", "--share"]`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow