regex: fix compilation

pull/6338/head
Alexander Medvednikov 2020-09-09 14:18:06 +02:00
parent ea31f75098
commit cb43084e26
2 changed files with 3 additions and 3 deletions

View File

@ -326,7 +326,7 @@ pub mut:
// Debug/log // Debug/log
debug int // enable in order to have the unroll of the code 0 = NO_DEBUG, 1 = LIGHT 2 = VERBOSE debug int // enable in order to have the unroll of the code 0 = NO_DEBUG, 1 = LIGHT 2 = VERBOSE
log_func FnLog = simple_log // log function, can be customized by the user log_func FnLog = simple_log // log function, can be customized by the user
query string = "" // query string query string // query string
} }
// Reset RE object // Reset RE object

View File

@ -141,8 +141,8 @@ match_test_suite_re = [
struct TestItemCGroup { struct TestItemCGroup {
src string src string
q string q string
s int = 0 s int
e int = 0 e int
cg []int cg []int
cgn map[string]int cgn map[string]int
} }