From 57e8a93ae048dc460b6a4d0e8237768b5ef1d45e Mon Sep 17 00:00:00 2001 From: David Friberg Date: Thu, 14 Mar 2019 10:21:46 -0500 Subject: [PATCH] Use -Wno-implicit-fallthrough --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index f95fdb4a..11472038 100644 --- a/wscript +++ b/wscript @@ -220,7 +220,7 @@ def configure(conf): conf.env['BUILD_WERROR'] = not RELEASE add_cflag(conf, '-Wall') - add_cflag(conf, '-Wimplicit-fallthrough=0') + add_cflag(conf, '-Wno-implicit-fallthrough') add_cflag(conf, '--warn-no-restrict') # lash_wrap code is generated by swig and causes warnings if not conf.env['BUILD_PYLASH']: