regex: fix unused variable warnings in regex_test.v

pull/4908/head
Delyan Angelov 2020-05-15 18:50:54 +03:00
parent 8de6da01d6
commit 465f0ddf60
2 changed files with 4 additions and 4 deletions

View File

@ -314,7 +314,7 @@ pub mut:
group_max_nested int = 3 // max nested group
group_max int = 8 // max allowed number of different groups
group_csave []int = []int // groups continuous save array
group_csave []int = []int{} // groups continuous save array
group_csave_index int= -1 // groups continuous save index
group_map map[string]int // groups names map

View File

@ -173,7 +173,7 @@ fn test_regex(){
// debug print
//println("#$c [$to.src] q[$to.q] ($to.s, $to.e)")
mut re, re_err, err_pos := regex.regex(to.q)
mut re, re_err, _ := regex.regex(to.q)
re.group_csave = [-1].repeat(3*20+1)
if re_err == regex.COMPILE_OK {
@ -219,7 +219,7 @@ fn test_regex(){
}
// check find_all
for c,to in match_test_suite_fa{
for _,to in match_test_suite_fa{
// debug print
//println("#$c [$to.src] q[$to.q] $to.r")
@ -249,7 +249,7 @@ fn test_regex(){
}
// check replace
for c,to in match_test_suite_re{
for _,to in match_test_suite_re{
// debug print
//println("#$c [$to.src] q[$to.q] $to.r")