mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cc: add support for tcc backend on windows-i386 (#6297)
This commit is contained in:
@ -1209,7 +1209,7 @@ fn (mut re RE) impl_compile(in_txt string) (int,int) {
|
||||
}
|
||||
|
||||
// init the state stack
|
||||
re.state_stack = [StateDotObj{}].repeat(tmp_count+1)
|
||||
re.state_stack = []StateDotObj{len: tmp_count+1, init: StateDotObj{}}
|
||||
|
||||
// OR branch
|
||||
// a|b|cd
|
||||
|
Reference in New Issue
Block a user