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