mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: disallow address of array and map index outside unsafe (#6557)
This commit is contained in:
@ -1346,7 +1346,7 @@ pub fn (re RE) get_query() string {
|
||||
|
||||
mut i := 0
|
||||
for i < re.prog.len && re.prog[i].ist != ist_prog_end && re.prog[i].ist != 0{
|
||||
tk := &re.prog[i]
|
||||
tk := unsafe { &re.prog[i] }
|
||||
ch := tk.ist
|
||||
|
||||
// GROUP start
|
||||
|
Reference in New Issue
Block a user