Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Feb 14, 2024
1 parent 0cb1654 commit b2ff529
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions compiler/noirc_evaluator/src/ssa/acir_gen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,8 @@ impl Context {

let value_types = new_slice_val.flat_numeric_types();
assert_eq!(
value_types.len(), new_elem_size,
value_types.len(),
new_elem_size,
"ICE: Value types array must match new slice size"
);

Expand Down Expand Up @@ -1775,7 +1776,8 @@ impl Context {

let value_types = new_slice_val.flat_numeric_types();
assert_eq!(
value_types.len(), new_slice_size,
value_types.len(),
new_slice_size,
"ICE: Value types array must match new slice size"
);

Expand Down Expand Up @@ -1988,7 +1990,8 @@ impl Context {

let value_types = slice.flat_numeric_types();
assert_eq!(
value_types.len(), slice_size,
value_types.len(),
slice_size,
"ICE: Value types array must match new slice size"
);

Expand Down Expand Up @@ -2112,7 +2115,8 @@ impl Context {

let value_types = new_slice_val.flat_numeric_types();
assert_eq!(
value_types.len(), slice_size,
value_types.len(),
slice_size,
"ICE: Value types array must match new slice size"
);

Expand Down

0 comments on commit b2ff529

Please sign in to comment.