summaryrefslogtreecommitdiff
path: root/src/regex_impl.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-10-20 18:14:57 +0800
committerMaxime Coste <mawww@kakoune.org>2017-11-01 14:05:15 +0800
commitdf2bf9601cffcb0387da40e664e487123d64b59b (patch)
treee6397d2100f320ccf116fad6264ae316b7e3b374 /src/regex_impl.cc
parente9e9a08e7b85aa74e00790493899aa21c587f506 (diff)
Regex: fix wrong fallthough in dump_regex
Diffstat (limited to 'src/regex_impl.cc')
-rw-r--r--src/regex_impl.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regex_impl.cc b/src/regex_impl.cc
index f02e6c2a..8b6626fb 100644
--- a/src/regex_impl.cc
+++ b/src/regex_impl.cc
@@ -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");
}