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

main.v: fix msvc

This commit is contained in:
Alexander Medvednikov
2019-08-07 13:41:40 +02:00
parent cebb6cd537
commit 4b86ba6f6a
3 changed files with 3 additions and 3 deletions

View File

@@ -747,7 +747,7 @@ fn (v mut V) cc() {
}
$if windows {
if v.os == .msvc {
cc_msvc(mut v)
v.cc_msvc()
return
}
}