diff options
author | 2020-11-17 09:18:37 +1100 | |
---|---|---|
committer | 2020-11-17 09:18:37 +1100 | |
commit | ac270744f3066af4cb1d7cdd8c5fa20c126887fe (patch) | |
tree | 578221b642c7b29698dab20ec1816019b508cdbe /src/lib/formats/sol_cas.cpp | |
parent | f14e1794d7ab76d0701188ad1b3a8a165d8848a2 (diff) |
Fix most implicit fallthrough warnings from clang
Diffstat (limited to 'src/lib/formats/sol_cas.cpp')
-rw-r--r-- | src/lib/formats/sol_cas.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/formats/sol_cas.cpp b/src/lib/formats/sol_cas.cpp index a48a5b918fd..2d60023b23f 100644 --- a/src/lib/formats/sol_cas.cpp +++ b/src/lib/formats/sol_cas.cpp @@ -322,6 +322,7 @@ static int sol20_handle_cassette(int16_t *buffer, const uint8_t *bytes) sol20_scan_to_hex(bytes); } } + [[fallthrough]]; default: // everything else is ignored sol20_scan_to_eol(bytes); break; |