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

compiler: fix undeclared errors with [][]u16,u32,u64

This commit is contained in:
Delyan Angelov 2019-11-22 04:22:18 +02:00 committed by Alexander Medvednikov
parent 53a79ff934
commit d569f23e1c

View File

@ -194,6 +194,9 @@ typedef array array_int;
typedef array array_byte;
typedef array array_f32;
typedef array array_f64;
typedef array array_u16;
typedef array array_u32;
typedef array array_u64;
typedef map map_int;
typedef map map_string;
#ifndef bool