From 1aa800e884e00f310d375684ef566cc79d7de7d9 Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Fri, 22 May 2015 12:28:03 -0700 Subject: Suppress benign clang warning. To unblock continuous clang/llvm builds. BUG: 21337624 Change-Id: I38e5d11fd3c44f50430a3a8519c5071674b3df9f --- libs/hwui/Android.common.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/hwui/Android.common.mk b/libs/hwui/Android.common.mk index 3e76656..a5bfde7 100644 --- a/libs/hwui/Android.common.mk +++ b/libs/hwui/Android.common.mk @@ -1,8 +1,10 @@ # getConfig in external/skia/include/core/SkBitmap.h is deprecated. # Allow Gnu extension: in-class initializer of static 'const float' member. +# DeferredLayerUpdater.h: private field 'mRenderThread' is not used. LOCAL_CLANG_CFLAGS += \ -Wno-deprecated-declarations \ - -Wno-gnu-static-float-init + -Wno-gnu-static-float-init \ + -Wno-unused-private-field LOCAL_SRC_FILES := \ font/CacheTexture.cpp \ -- cgit v1.1