Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/cmd/joinp.rs:511:78 | 511 | util::decompress_snappy_file(&input1_path.to_path_buf(), &tmpdir)?; | ^^^^^^^ help: change this to: `tmpdir` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/cmd/joinp.rs:536:78 | 536 | util::decompress_snappy_file(&input2_path.to_path_buf(), &tmpdir)?; | ^^^^^^^ help: change this to: `tmpdir` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
- Loading branch information