From 8767a4ede6574182a96d5fe7cd8651beadee679b Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Fri, 19 Oct 2018 12:13:48 -0700 Subject: Allow implicit-fallthrough warnings locally. It will be a global error by default. Test: make checkbuild Bug: 112564944 Change-Id: Ib23d0cc8b95a3734d5bd28f8c9d967df669cfdf8 Exempt-From-Owner-Approval: do not block on new warnings --- cmds/incidentd/Android.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmds/incidentd/Android.mk b/cmds/incidentd/Android.mk index db864aed6bdc..eba558653b04 100644 --- a/cmds/incidentd/Android.mk +++ b/cmds/incidentd/Android.mk @@ -33,6 +33,9 @@ LOCAL_SRC_FILES := $(call all-cpp-files-under, src) \ LOCAL_CFLAGS += \ -Wall -Werror -Wno-missing-field-initializers -Wno-unused-variable -Wunused-parameter +# Allow implicit fallthrough in IncidentService.cpp:85 until it is fixed. +LOCAL_CFLAGS += -Wno-error=implicit-fallthrough + ifeq (debug,) LOCAL_CFLAGS += \ -g -O0 @@ -100,6 +103,9 @@ LOCAL_MODULE_TAGS := tests LOCAL_CFLAGS := -Werror -Wall -Wno-unused-variable -Wunused-parameter +# Allow implicit fallthrough in IncidentService.cpp:85 until it is fixed. +LOCAL_CFLAGS += -Wno-error=implicit-fallthrough + LOCAL_C_INCLUDES += $(LOCAL_PATH)/src LOCAL_SRC_FILES := $(call all-cpp-files-under, tests) \ -- cgit v1.2.3-59-g8ed1b