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

vlib.crypto+other: fix mut args

This commit is contained in:
joe-conigliaro
2019-08-07 21:37:07 +10:00
committed by Alexander Medvednikov
parent 818c4a14e5
commit 511a3d3901
15 changed files with 53 additions and 43 deletions

View File

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