aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-01-17 12:20:04 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-01-17 12:20:04 +0300
commite8aa2f35e82ddf8fe799c547ca1707a11d5928e0 (patch)
tree7bb2d0319921903e941ce7bc57fe8b897b3990d1
parentf01f5df3d8253bce857f127b9b0d44b722454101 (diff)
Fix GCC 8 -fimplicit-fallthrough warnings
-rw-r--r--odb/mysql/error.cxx2
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.