warnings: temporarily remove fallthrough warning

we use fallthrough fairly liberally in some bitwise and crypto
codepaths, and keeping this warning message (particularly in debug
builds where we use Werror) is painful.
This commit is contained in:
Danny Robson 2017-06-13 14:10:31 +10:00
parent 06bb32ff00
commit 929556d677

View File

@ -62,6 +62,8 @@ append_compile_flag(-Walloca)
append_compile_flag(-Wnonnull)
append_compile_flag(-Waligned-new)
append_compile_flag(-Wno-implicit-fallthrough)
# clang 3.7.1 warnings
append_compile_flag(-Wshorten-64-to-32)
append_compile_flag(-Wdeprecated)