summaryrefslogtreecommitdiff
path: root/fltrimpl.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-07-17 04:48:28 -0400
committerJeffrey Walton <noloader@gmail.com>2017-07-17 04:48:28 -0400
commit50d1ea83144af55e4938b3972dbc365908750fad (patch)
tree950d280730fe8e4f33c817c5bc22e68d9864a5a2 /fltrimpl.h
parentfe637956388f8dd60eb708ca1aecbed7386fede8 (diff)
downloadcryptopp-git-50d1ea83144af55e4938b3972dbc365908750fad.tar.gz
Cleared fall through warnings under GCC 7 (Issue 441)
Diffstat (limited to 'fltrimpl.h')
-rw-r--r--fltrimpl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fltrimpl.h b/fltrimpl.h
index d236a6c8..4fc4224b 100644
--- a/fltrimpl.h
+++ b/fltrimpl.h
@@ -54,6 +54,7 @@
#define FILTER_OUTPUT2_MODIFIABLE(site, statement, output, length, messageEnd) \
{\
+ /* fall through */ \
case site: \
statement; \
if (OutputModifiable(site, output, length, messageEnd, blocking)) \
@@ -65,6 +66,7 @@
#define FILTER_OUTPUT2_MAYBE_MODIFIABLE(site, statement, output, length, messageEnd, modifiable) \
{\
+ /* fall through */ \
case site: \
statement; \
if (modifiable ? OutputModifiable(site, output, length, messageEnd, blocking) : Output(site, output, length, messageEnd, blocking)) \