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

comptime: fix tcc check

This commit is contained in:
Alexander Medvednikov 2019-10-14 08:52:54 +03:00
parent 60e7c12e92
commit a68222b55b

View File

@ -69,7 +69,9 @@ fn (p mut Parser) comp_time() {
p.genln('#ifdef __TINYC__')
p.check(.lcbr)
p.statements_no_rcbr()
p.genln('#endif')
if ! (p.tok == .dollar && p.peek() == .key_else) {
p.genln('#endif')
}
}
else {
println('Supported platforms:')