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:
@ -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()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user