Commit c02bdb9
authored
Fix clippy needless-borrow lint
```
error: this expression borrows a reference (`&Extent`) that is immediately dereferenced by the compiler
--> mp4parse/src/lib.rs:907:51
|
907 | if let Some(slice) = mdat.get(&extent) {
| ^^^^^^^ help: change this to: `extent`
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
```1 parent 2832710 commit c02bdb9
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
902 | 902 | | |
903 | 903 | | |
904 | 904 | | |
905 | | - | |
| 905 | + | |
906 | 906 | | |
907 | 907 | | |
908 | 908 | | |
| |||
0 commit comments