From daf69959dac784ed3aa0493c2570796a2d907d3d Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 7 Jun 2018 14:21:05 +0300 Subject: Fix GCC 7 -fimplicit-fallthrough warnings --- odb/oracle/traits.cxx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/odb/oracle/traits.cxx b/odb/oracle/traits.cxx index c50c96f..3598dda 100644 --- a/odb/oracle/traits.cxx +++ b/odb/oracle/traits.cxx @@ -70,9 +70,8 @@ namespace odb case chunk_first: { v.clear (); - - // Falling through. } + // Fall through. case chunk_next: case chunk_last: { @@ -118,9 +117,8 @@ namespace odb case chunk_first: { v.clear (); - - // Falling through. } + // Fall through. case chunk_next: case chunk_last: { @@ -168,9 +166,8 @@ namespace odb case chunk_first: { v.clear (); - - // Falling through. } + // Fall through. case chunk_next: case chunk_last: { -- cgit v1.1