fix V build

pull/3009/head
Alexander Medvednikov 2019-12-08 00:27:24 +03:00
parent 8ebc2fe601
commit dc2da1de98
1 changed files with 3 additions and 3 deletions

View File

@ -106,9 +106,9 @@ fn (table mut Table) parse_cflag(cflag string, mod string) ?bool {
index = i
}
}
if i := flag.index(',') {
if index == -1 || i < index {
index = i
if i2 := flag.index(',') {
if index == -1 || i2 < index {
index = i2
}
}
if index != -1 && flag[index] == ` ` && flag[index+1] == `-` {