From b354b29581cef423d60ab7d9b865deee44a18458 Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 25 Mar 2024 10:54:02 -0400 Subject: [PATCH] cwCsv.cpp : Mark [[fallthrough]] in 'case kBeforeField'. --- cwCsv.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cwCsv.cpp b/cwCsv.cpp index c6aa024..3db4498 100644 --- a/cwCsv.cpp +++ b/cwCsv.cpp @@ -113,6 +113,7 @@ namespace cw continue; state = c==dquote ? kInQuotedField : kInField; + [[fallthrough]]; case kInField: if(c == field_seperator_char )