diff options
author | Chih-Hung Hsieh <chh@google.com> | 2015-05-22 12:28:03 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2015-05-22 12:28:03 -0700 |
commit | 1aa800e884e00f310d375684ef566cc79d7de7d9 (patch) | |
tree | 3a5b8e3c1158ea2ceb6fbb3f6eef2550e12c811d | |
parent | fa4d547d5813a8f5c298efd089890b5b502df76d (diff) | |
download | frameworks_base-1aa800e884e00f310d375684ef566cc79d7de7d9.zip frameworks_base-1aa800e884e00f310d375684ef566cc79d7de7d9.tar.gz frameworks_base-1aa800e884e00f310d375684ef566cc79d7de7d9.tar.bz2 |
Suppress benign clang warning.
To unblock continuous clang/llvm builds.
BUG: 21337624
Change-Id: I38e5d11fd3c44f50430a3a8519c5071674b3df9f
-rw-r--r-- | libs/hwui/Android.common.mk | 4 |
1 files changed, 3 insertions, 1 deletions
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 \ |