diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-01-17 12:20:04 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-01-17 12:20:04 +0300 |
commit | e8aa2f35e82ddf8fe799c547ca1707a11d5928e0 (patch) | |
tree | 7bb2d0319921903e941ce7bc57fe8b897b3990d1 | |
parent | f01f5df3d8253bce857f127b9b0d44b722454101 (diff) |
Fix GCC 8 -fimplicit-fallthrough warnings
-rw-r--r-- | odb/mysql/error.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/mysql/error.cxx b/odb/mysql/error.cxx index 4b247ea..86996e9 100644 --- a/odb/mysql/error.cxx +++ b/odb/mysql/error.cxx @@ -40,8 +40,8 @@ namespace odb case CR_UNKNOWN_ERROR: { c.mark_failed (); - // Fall through. } + // Fall through. default: { // Get rid of a trailing newline if there is one. |