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

Suffix array #61

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

skip sorting when building the suffix array tables

256f7d5
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

Suffix array #61

skip sorting when building the suffix array tables
256f7d5
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Aug 6, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

src/dat_parser/entry.rs|226 col 30| error: writing &mut Vec instead of &mut [_] involves a new object where a slice will do
--> src/dat_parser/entry.rs:226:30
|
226 | fn parse_db_references(data: &mut Vec, index: &mut usize) -> (Vec, Vec) {
| ^^^^^^^^^^^^^^^^ help: change this to: &mut [String]
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: -D clippy::ptr-arg implied by -D warnings
= help: to override -D warnings add #[allow(clippy::ptr_arg)]