mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: require unsafe for free()
This commit is contained in:
@ -47,7 +47,9 @@ fn (mut a App) init() {
|
||||
}
|
||||
|
||||
fn (mut a App) cleanup() {
|
||||
a.ps.free()
|
||||
unsafe {
|
||||
a.ps.free()
|
||||
}
|
||||
}
|
||||
|
||||
fn (mut a App) run() {
|
||||
|
Reference in New Issue
Block a user