Skip to content

Remove binding from powerquery #740

Remove binding from powerquery

Remove binding from powerquery #740

GitHub Actions / Clippy (1.56.1) failed Oct 18, 2024 in 0s

Clippy (1.56.1)

2 errors

Details

Results

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

Versions

  • rustc 1.78.0 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check failure on line 313 in halo2_proofs/benches/plonk.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (1.56.1)

this expression creates a reference which is immediately dereferenced by the compiler

error: this expression creates a reference which is immediately dereferenced by the compiler
   --> halo2_proofs/benches/plonk.rs:313:17
    |
313 |                 &vk,
    |                 ^^^ help: change this to: `vk`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
    = note: `-D clippy::needless-borrow` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::needless_borrow)]`

Check failure on line 340 in halo2_proofs/benches/plonk.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (1.56.1)

unused variable: `k`

error: unused variable: `k`
   --> halo2_proofs/benches/plonk.rs:340:19
    |
340 |             |b, &(k, params, pk)| {
    |                   ^ help: if this is intentional, prefix it with an underscore: `_k`
    |
    = note: `-D unused-variables` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(unused_variables)]`