diff options
author | Chih-Hung Hsieh <chh@google.com> | 2018-10-22 09:56:12 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2018-10-22 09:56:12 -0700 |
commit | e8abd0677674aab095aa192f2a85b1632a962791 (patch) | |
tree | a1561a64a462aa2764852ee75be1a06bb45bf754 /tools/aapt | |
parent | fccdf46adf096e9ba200ce79e00f6df379b5c649 (diff) |
Allow implicit-fallthrough warnings locally.
It will be a global error by default.
Test: make checkbuild
Bug: 112564944
Change-Id: I26616fd50ccf3639fa7c01d850a14d079273ede7
Exempt-From-Owner-Approval: do not block on new warnings
Diffstat (limited to 'tools/aapt')
-rw-r--r-- | tools/aapt/Android.bp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/aapt/Android.bp b/tools/aapt/Android.bp index a594e5bf0ce1..f36739730775 100644 --- a/tools/aapt/Android.bp +++ b/tools/aapt/Android.bp @@ -71,6 +71,8 @@ cc_library_host_static { cflags: [ "-Wno-format-y2k", "-DSTATIC_ANDROIDFW_FOR_TOOLS", + // Allow implicit fallthroughs in AaptAssets.cpp until they are fixed. + "-Wno-error=implicit-fallthrough", ], srcs: [ |