Explicitly mark fallthrough

Silences a compiler warning (that is otherwise a good thing!)
This commit is contained in:
Fabian Homborg 2018-12-11 18:19:47 +01:00
parent 7ebef0a396
commit cf16d39872

View File

@ -1124,6 +1124,7 @@ static wcstring escape_string_pcre2(const wcstring &in) {
case L'-':
case L']':
out.push_back('\\');
/* FALLTHROUGH */
default:
out.push_back(c);
}