Regex: fix wrong fallthough in dump_regex

This commit is contained in:
Maxime Coste 2017-10-20 18:14:57 +08:00
parent e9e9a08e7b
commit df2bf9601c

View File

@ -1016,6 +1016,7 @@ void dump_regex(const CompiledRegex& program)
}
case CompiledRegex::FindNextStart:
printf("find next start\n");
break;
case CompiledRegex::Match:
printf("match\n");
}