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

builtin: fix compilation (#11445)

This commit is contained in:
Enzo
2021-09-08 13:19:21 +02:00
committed by GitHub
parent 43fae5de74
commit bef3390f36
2 changed files with 5 additions and 5 deletions

View File

@@ -23,9 +23,9 @@ pub fn (x usize) str() string {
return u64(x).str()
}
pub fn (x size_t) str() string {
return u64(x).str()
}
// pub fn (x size_t) str() string {
// return u64(x).str()
// }
pub fn (cptr &char) str() string {
return u64(cptr).hex()