Skip to content

Bump actions/upload-artifact from 2 to 3 #159

Bump actions/upload-artifact from 2 to 3

Bump actions/upload-artifact from 2 to 3 #159

GitHub Actions / clippy succeeded Aug 25, 2023 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.74.0-nightly (58eefc33a 2023-08-24)
  • cargo 1.74.0-nightly (2cc50bc0b 2023-08-22)
  • clippy 0.1.73 (58eefc3 2023-08-24)

Annotations

Check warning on line 95 in src/analyzer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this argument is a mutable reference, but not used mutably

warning: this argument is a mutable reference, but not used mutably
  --> src/analyzer.rs:95:26
   |
95 |     array_recurse_level: &mut HashMap<String, u8>,
   |                          ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing to: `&HashMap<String, u8>`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_ref_mut
   = note: `#[warn(clippy::needless_pass_by_ref_mut)]` on by default