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

replace *Foo with &Foo everywhere

This commit is contained in:
Alexander Medvednikov
2019-09-01 22:51:16 +03:00
parent aaab24dcf8
commit 0e2c41e0f9
12 changed files with 52 additions and 50 deletions

View File

@ -260,7 +260,7 @@ pub fn copy(dst, src []byte) int {
return 0
}
fn compare_ints(a, b *int) int {
fn compare_ints(a, b &int) int {
if a < b {
return -1
}