aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2019-06-11 13:38:24 +0100
committerMichalis Spyrou <michalis.spyrou@arm.com>2019-06-11 16:09:41 +0000
commit52016545c1df6af650f9ea1a00a7c2870fa50ce9 (patch)
tree3487d7a548e05aa39683c56f9079c1cf83052542 /SConstruct
parent82d9dd1c750d9a9a64650239b6ed3f955555a728 (diff)
downloadComputeLibrary-52016545c1df6af650f9ea1a00a7c2870fa50ce9.tar.gz
COMPMID-2336: Enable implicit fallthrough warnings
Change-Id: I7df8754331cc84bb5b1347344e4efeab1279a85e Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/1325 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 93c9792265..f18b13782c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -147,7 +147,7 @@ if env['os'] == 'android' and ( 'clang++' not in cpp_compiler or 'clang' not in
if 'clang++' in cpp_compiler:
env.Append(CXXFLAGS = ['-Wno-format-nonliteral','-Wno-deprecated-increment-bool','-Wno-vla-extension','-Wno-mismatched-tags'])
else:
- env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel','-Wno-implicit-fallthrough', '-Wno-redundant-move'])
+ env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel', '-Wno-redundant-move'])
if env['cppthreads']:
env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])