GitHub Actions / Clippy (beta)
succeeded
Nov 14, 2023 in 0s
Clippy (beta)
3 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 3 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.63.0 (4b91a6ea7 2022-08-08)
- cargo 1.63.0 (fd9c4297c 2022-07-01)
- clippy 0.1.63 (4b91a6e 2022-08-08)
Annotations
Check warning on line 483 in halo2_proofs/src/plonk/mv_lookup/prover.rs
github-actions / Clippy (beta)
redundant closure
warning: redundant closure
--> halo2_proofs/src/plonk/mv_lookup/prover.rs:483:22
|
483 | .map(|i| Fr::from(i))
| ^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `Fr::from`
|
= note: `-W clippy::redundant-closure` implied by `-W clippy::all`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
Check warning on line 481 in halo2_proofs/src/plonk/mv_lookup/prover.rs
github-actions / Clippy (beta)
unused variable: `table`
warning: unused variable: `table`
--> halo2_proofs/src/plonk/mv_lookup/prover.rs:481:17
|
481 | let table: BTreeMap<Fr, usize> = (0..n)
| ^^^^^ help: if this is intentional, prefix it with an underscore: `_table`
Check warning on line 469 in halo2_proofs/src/plonk/mv_lookup/prover.rs
github-actions / Clippy (beta)
unused variable: `table`
warning: unused variable: `table`
--> halo2_proofs/src/plonk/mv_lookup/prover.rs:469:17
|
469 | let table: BTreeMap<Fr, usize> = (0..n)
| ^^^^^ help: if this is intentional, prefix it with an underscore: `_table`
|
= note: `#[warn(unused_variables)]` on by default
Loading