1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: disable C++ test for now

This commit is contained in:
Alexander Medvednikov
2020-07-11 15:36:05 +02:00
parent 26768e8514
commit 59df2db4e0
2 changed files with 5 additions and 5 deletions

View File

@@ -122,7 +122,7 @@ fn new_dense_array(value_bytes int) DenseArray {
fn (mut d DenseArray) push(key string, value voidptr) u32 {
if d.cap == d.len {
d.cap += d.cap >> 3
d.keys = &string(v_realloc(byteptr(d.keys), sizeof(string) * d.cap))
d.keys = &string(v_realloc(d.keys, sizeof(string) * d.cap))
d.values = v_realloc(d.values, u32(d.value_bytes) * d.cap)
}
push_index := d.len