Mark a fall-through with a comment

Fix #283
This commit is contained in:
Jakob Botsch Nielsen 2018-01-05 12:57:16 +01:00
parent 4988ecbaf0
commit 5d4186046c

View File

@ -99,6 +99,7 @@ static char* parseRow(char* buf, char* bufEnd, char* row, int len)
case '\t':
case ' ':
if (start) break;
// else falls through
default:
start = false;
row[n++] = c;