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

all: fix all remaining unsafe 0 (#14856)

This commit is contained in:
yuyi
2022-06-26 22:04:23 +08:00
committed by GitHub
parent cb60392302
commit 5a79a54fe4
9 changed files with 10 additions and 10 deletions

View File

@ -6,7 +6,7 @@ pub:
date &u8 = unsafe { 0 }
buf_start &u8 = unsafe { 0 }
pub mut:
buf &u8 = 0
buf &u8 = unsafe { 0 }
}
[inline]