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

ci: fix [if xyz ?] usages

This commit is contained in:
Delyan Angelov
2021-06-22 10:46:43 +03:00
parent a3f876d683
commit dd6591b2f5
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ fn foo(x int) {
println('foo, x: $x')
}
[if bar]
[if bar ?]
fn bar(x int) {
println('bar, x: $x')
}

View File

@ -1,6 +1,6 @@
// Calls to edebug/1 should be executed only when `-d mydebug` is passed on the CLI
// Otherwise they will not be present *at all* in the generated code.
[if mydebug]
[if mydebug ?]
fn edebug(message string) {
println('message: $message')
}