summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Tabaka <eieio@google.com>2017-11-07 12:58:16 -0800
committerCorey Tabaka <eieio@google.com>2017-11-07 12:58:16 -0800
commit257cb8d7ef72d57ae47b800d17488c9e758b6806 (patch)
tree97f6815a76716d2e3b40ac232a34d57e900fca12
parente29a1fa830901156cf387760a8a13beea963607f (diff)
downloadgps-257cb8d7ef72d57ae47b800d17488c9e758b6806.tar.gz
Fix build break in master-daydream-dev caused by -Werror
A previous CL enabled -Werror and warning exceptions to the Android.mk files under hardware/qcom/gps. This change breaks at least master-daydream-dev branch due to -Wdelete-incomplete warning that is not included in the exptions in msm8998/core/Android.mk. - Add -Wno-delete-incomplete to the exceptions. Bug: 68998074 Test: build succeeds Change-Id: I35efafa2cdeff94d996cf773d956d1cde7a8d8cc
-rw-r--r--msm8998/core/Android.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/msm8998/core/Android.mk b/msm8998/core/Android.mk
index 1bcc16b..6b20994 100644
--- a/msm8998/core/Android.mk
+++ b/msm8998/core/Android.mk
@@ -43,6 +43,7 @@ LOCAL_CFLAGS += \
-Wno-unneeded-internal-declaration \
-Wno-unused-const-variable \
-Wno-unused-parameter \
+ -Wno-delete-incomplete \
LOCAL_CPPFLAGS += \
-Wno-overloaded-virtual \