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

autofree: simplify: merge tmp arg logic with scope vars

This commit is contained in:
Alexander Medvednikov
2020-11-09 14:24:46 +01:00
parent 507d724ee6
commit 1c257abc23
5 changed files with 20 additions and 14 deletions

View File

@@ -110,9 +110,9 @@ pub fn mkdir(path string) ?bool {
}
*/
apath := real_path(path)
defer {
apath.free()
}
//defer {
//apath.free()
//}
/*
$if linux {
$if !android {