vtest-cleancode: add builtin/map.v to fmt list (#7285)

pull/7320/head
Nick Treleaven 2020-12-14 10:31:24 +00:00 committed by GitHub
parent 78fb84c4dd
commit 999fe846e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ const (
'cmd/tools/vdoc.v'
'cmd/v/v.v',
'vlib/builtin/array.v',
'vlib/builtin/map.v',
'vlib/os/file.v',
'vlib/math/bits/bits.v',
'vlib/time/time.v',

View File

@ -119,7 +119,7 @@ fn new_dense_array(key_bytes int, value_bytes int) DenseArray {
len: 0
deletes: 0
all_deleted: 0
data: malloc(cap * slot_bytes)
data: malloc(cap * slot_bytes)
}
}