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

all: remove size_t (#11478)

This commit is contained in:
Enzo
2021-09-21 01:12:38 +02:00
committed by GitHub
parent 4aa99e4303
commit b2ecca3966
8 changed files with 16 additions and 45 deletions

View File

@ -24,10 +24,6 @@ pub fn (x usize) 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()
}