Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
georgwiese committed Nov 22, 2024
1 parent bda494e commit b81541e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/composite/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ impl<F: FieldElement> Backend<F> for CompositeBackend<F> {
.iter()
.filter_map(|machine_entry| {
let (machine, machine_data) = machine_entry;
let (witness, size) = witness_by_machine.get(machine).cloned().unwrap();
let (witness, size) = witness_by_machine[machine].clone();
if size == 0 {
// If a machine has no rows, remove it entirely.
return None;
Expand Down

0 comments on commit b81541e

Please sign in to comment.