mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: fix all remaining unsafe 0 (#14856)
This commit is contained in:
parent
cb60392302
commit
5a79a54fe4
9 changed files with 10 additions and 10 deletions
|
@ -57,8 +57,8 @@ pub:
|
|||
|
||||
struct App {
|
||||
mut:
|
||||
tui &tui.Context = 0
|
||||
ed &Buffer = 0
|
||||
tui &tui.Context = unsafe { 0 }
|
||||
ed &Buffer = unsafe { 0 }
|
||||
current_file int
|
||||
files []string
|
||||
status string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue