aboutsummaryrefslogtreecommitdiff
path: root/odb/context.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-11-07 11:57:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-11-07 11:57:15 +0200
commitbc1616e3e45967ccec892d14a9337554238ca332 (patch)
treed7783ea36e2c9423d90809bca715537bee99c285 /odb/context.cxx
parent6e374de9ae2f2978f2fca3390aba4ea3f72bfade (diff)
Get rid of GCC 7 case fall-through warnings
Diffstat (limited to 'odb/context.cxx')
-rw-r--r--odb/context.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/context.cxx b/odb/context.cxx
index 7801072..e959e08 100644
--- a/odb/context.cxx
+++ b/odb/context.cxx
@@ -213,8 +213,8 @@ translate (string const& val, const cxx_tokens& expr)
}
continue; // We have already gotten the next token.
}
- // Fall through.
}
+ // Fall through.
default:
{
// Handle CPP_KEYWORD here to avoid a warning (it is not
@@ -487,8 +487,8 @@ translate (string const& obj, string const& val, string const& db) const
}
continue; // We have already gotten the next token.
}
- // Fall through.
}
+ // Fall through.
default:
{
// Handle CPP_KEYWORD here to avoid a warning (it is not