Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Dec 15, 2024
1 parent cf3e80e commit 07b7d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/gen/c/auto_eq_methods.v
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ fn (mut g Gen) gen_fixed_array_equality_fn(left_type ast.Type) string {
} else {
arg_styp
}
fn_builder.write_string('\tif (!memcmp(&a${suffix}, &b${suffix}, sizeof(${size_styp}))) {')
fn_builder.writeln('\tif (!memcmp(&a${suffix}, &b${suffix}, sizeof(${size_styp}))) {')
fn_builder.writeln('\t\treturn true;')
fn_builder.writeln('\t}')
}
Expand Down

0 comments on commit 07b7d48

Please sign in to comment.