From b79dd7f0b3c87383281cf8b5f255100eeeb44e87 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Thu, 29 Jul 2021 06:46:12 +0300 Subject: [PATCH] builtin: re-enable u8 alias --- vlib/builtin/int.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/builtin/int.v b/vlib/builtin/int.v index cd1cbd86e2..9c769d999f 100644 --- a/vlib/builtin/int.v +++ b/vlib/builtin/int.v @@ -7,7 +7,7 @@ module builtin // ----- value to string functions ----- // -//type u8 = byte +type u8 = byte // ptr_str returns the address of `ptr` as a `string`. pub fn ptr_str(ptr voidptr) string {