From: morgolock Date: Tue, 17 Nov 2020 09:37:37 +0000 (+0000) Subject: COMPMID-3771: Fixed implicit-fallthrough warning X-Git-Tag: submit/tizen/20210421.062230~220 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8f812b3a412dae4a8ec4ad2e4fdd781d73e813c;p=platform%2Fupstream%2Farmcl.git 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 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4436 Tested-by: Arm Jenkins Reviewed-by: Sheri Zhang --- diff --git a/Android.bp b/Android.bp index 98b00cf5b..3678c705e 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, }