From f8169fee487ee2eae15870706ba9390b6b1e2cb1 Mon Sep 17 00:00:00 2001 From: joe-conigliaro Date: Tue, 31 Mar 2020 16:17:26 +1100 Subject: [PATCH] table: add i8 to number_type_idxs --- vlib/v/table/atypes.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/table/atypes.v b/vlib/v/table/atypes.v index 59b5a989c8..00c0746cbb 100644 --- a/vlib/v/table/atypes.v +++ b/vlib/v/table/atypes.v @@ -175,7 +175,7 @@ pub const ( ) pub const ( - number_type_idxs = [int_type_idx, byte_type_idx, u16_type_idx, i16_type_idx, i64_type_idx, u32_type_idx, u64_type_idx, f32_type_idx, f64_type_idx] + number_type_idxs = [i8_type_idx, i16_type_idx, int_type_idx, i64_type_idx, byte_type_idx, u16_type_idx, u32_type_idx, u64_type_idx, f32_type_idx, f64_type_idx] pointer_type_idxs = [voidptr_type_idx, byteptr_type_idx, charptr_type_idx] )