diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-06-07 14:21:05 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-06-07 14:25:11 +0300 |
commit | daf69959dac784ed3aa0493c2570796a2d907d3d (patch) | |
tree | 75469a5eece0deb8dcf7eff535d97ba212dc8758 | |
parent | 9823d0c79402663f0973579f89b5814f65bc6a31 (diff) |
Fix GCC 7 -fimplicit-fallthrough warnings
-rw-r--r-- | odb/oracle/traits.cxx | 9 |
1 files 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: { |