Skip to content

Commit c611d5c

Browse files
committed
ci: run v fmt -w vlib/builtin
1 parent 4095c83 commit c611d5c

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

‎vlib/builtin/map_notd_gcboehm_opt.v‎

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ fn new_map_noscan_key_value(key_bytes int, value_bytes int, hash_fn MapHashFn, k
2121

2222
fn new_map_init_noscan_key(hash_fn MapHashFn, key_eq_fn MapEqFn, clone_fn MapCloneFn, free_fn MapFreeFn,
2323
n int, key_bytes int, value_bytes int, keys voidptr, values voidptr) map {
24-
return new_map_init(hash_fn, key_eq_fn, clone_fn, free_fn, n, key_bytes, value_bytes, keys, values)
24+
return new_map_init(hash_fn, key_eq_fn, clone_fn, free_fn, n, key_bytes, value_bytes,
25+
keys, values)
2526
}
2627

2728
fn new_map_init_noscan_value(hash_fn MapHashFn, key_eq_fn MapEqFn, clone_fn MapCloneFn, free_fn MapFreeFn,
2829
n int, key_bytes int, value_bytes int, keys voidptr, values voidptr) map {
29-
return new_map_init(hash_fn, key_eq_fn, clone_fn, free_fn, n, key_bytes, value_bytes, keys, values)
30+
return new_map_init(hash_fn, key_eq_fn, clone_fn, free_fn, n, key_bytes, value_bytes,
31+
keys, values)
3032
}
3133

3234
fn new_map_init_noscan_key_value(hash_fn MapHashFn, key_eq_fn MapEqFn, clone_fn MapCloneFn, free_fn MapFreeFn,
3335
n int, key_bytes int, value_bytes int, keys voidptr, values voidptr) map {
34-
return new_map_init(hash_fn, key_eq_fn, clone_fn, free_fn, n, key_bytes, value_bytes, keys, values)
36+
return new_map_init(hash_fn, key_eq_fn, clone_fn, free_fn, n, key_bytes, value_bytes,
37+
keys, values)
3538
}

0 commit comments

Comments
 (0)