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

ci: fix v build-examples

This commit is contained in:
Delyan Angelov
2022-04-15 20:31:10 +03:00
parent e18cb9748f
commit 6f5a513d8b
8 changed files with 16 additions and 17 deletions

View File

@ -133,7 +133,7 @@ pub fn (x int_literal) hex() string {
return res
}
pub fn (x byte) hex() string {
pub fn (x u8) hex() string {
res := ''
#res.str = x.val.toString(16)
@ -172,7 +172,7 @@ pub fn (i i64) hex2() string {
return '0x' + i.hex()
}
pub fn (i byte) hex2() string {
pub fn (i u8) hex2() string {
return '0x' + i.hex()
}