Skip to content

Commit

Permalink
Clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjudson committed May 28, 2024
1 parent 2707645 commit b0e1d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/src/circuit/r1cs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ impl R1CS {
let mut rv = format!("{i}");
for (n, j) in &self.vars {
if *j == i {
rv = n.clone();
rv = n.clone_from();

Check failure on line 314 in vm/src/circuit/r1cs.rs

View workflow job for this annotation

GitHub Actions / cargo-clippy

this method takes 1 argument but 0 arguments were supplied

Check failure on line 314 in vm/src/circuit/r1cs.rs

View workflow job for this annotation

GitHub Actions / cargo-clippy

mismatched types

Check failure on line 314 in vm/src/circuit/r1cs.rs

View workflow job for this annotation

GitHub Actions / build

this method takes 1 argument but 0 arguments were supplied

Check failure on line 314 in vm/src/circuit/r1cs.rs

View workflow job for this annotation

GitHub Actions / build

mismatched types
}
}
println!("{} * {} (name {})", v[i], self.w[i], rv);
Expand Down

0 comments on commit b0e1d25

Please sign in to comment.