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

-prealloc

This commit is contained in:
Alexander Medvednikov
2019-12-14 02:28:15 +03:00
parent 88cde6e4e6
commit ef562413cd
3 changed files with 11 additions and 4 deletions

View File

@ -82,6 +82,9 @@ fn (p mut Parser) comp_time() {
else if name == 'debug' {
p.comptime_if_block('VDEBUG')
}
else if name == 'prealloc' {
p.comptime_if_block('VPREALLOC')
}
else if name == 'tinyc' {
p.comptime_if_block('__TINYC__')
}