We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a1ccba commit a0496acCopy full SHA for a0496ac
1 file changed
include/internal/basic_csv_parser.cpp
@@ -182,10 +182,15 @@ namespace csv {
182
this->data_pos_++;
183
}
184
185
- // Intentionally fall through to handle the newline in the next case
186
- // If CR (old Mac style newline), fallthrough handles it
+#if defined(__GNUC__) || defined(__clang__)
+#pragma GCC diagnostic push
187
+#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
188
+#endif
189
190
case ParseFlags::NEWLINE:
191
192
+#pragma GCC diagnostic pop
193
194
195
196
// End of record. Preserve intentional empty fields such as
0 commit comments