mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 19:10:42 +00:00
A switch statement where every case returns triggers a gcc warning if the surrounding function doesn't return/abort. Fix by adding an abort(). The abort() will never trigger since we have a warning on unhandled switch cases.