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

more windows fixes + bring back windows ci

This commit is contained in:
Alexander Medvednikov
2020-04-02 13:44:46 +02:00
parent 1178bfa578
commit 5b835d294c
6 changed files with 28 additions and 30 deletions

View File

@@ -52,7 +52,8 @@ fn find_windows_kit_internal(key RegKey, versions []string) ?string {
if value[length - 1] != u16(0) {
value[length] = u16(0)
}
return string_from_wide(value)
res := string_from_wide(value)
return res
}
}
}