Merge "Fix implicit-fallthrough warning."

This commit is contained in:
Treehugger Robot
2018-10-16 22:04:01 +00:00
committed by Gerrit Code Review

View File

@@ -81,7 +81,7 @@ split_line(const char* p, vector<string>* out)
state = TEXT;
break;
}
// otherwise fall-through to TEXT case
[[fallthrough]];
case TEXT:
if (state != IN_QUOTE && isspace(*p)) {
if (q != p) {