aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormorgolock <pablo.tello@arm.com>2020-11-17 09:37:37 +0000
committerSheri Zhang <sheri.zhang@arm.com>2020-11-17 11:08:08 +0000
commitf8f812b3a412dae4a8ec4ad2e4fdd781d73e813c (patch)
treee4a852bdcf783b29719d321c31dd86ec69e576ed
parent229757be70e7884b1a64972c2bdf9919075401a2 (diff)
downloadComputeLibrary-f8f812b3a412dae4a8ec4ad2e4fdd781d73e813c.tar.gz
COMPMID-3771: Fixed implicit-fallthrough warning
Disabled the warning in the Android.bp. When we move to C++17 we can enable it again and use [[fallthrough]] instead. Change-Id: I96372d286e1c18f58c704bede131a8eb19cdcb56 Signed-off-by: morgolock <pablo.tello@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4436 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Sheri Zhang <sheri.zhang@arm.com>
-rw-r--r--Android.bp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 98b00cf5ba..3678c705e9 100644
--- a/Android.bp
+++ b/Android.bp
@@ -31,7 +31,8 @@ arm_compute_library_defaults {
"-DARM_COMPUTE_CPP_SCHEDULER",
"-Wno-unused-parameter",
"-DNO_DOT_IN_TOOLCHAIN",
- "-no-integrated-as"
+ "-no-integrated-as",
+ "-Wno-implicit-fallthrough"
],
rtti: true,
}