From b1ea33b64cb4ca35cb4b22e6b18052fbbeecc1de Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 8 Nov 2019 13:08:36 -0800 Subject: [PATCH] Replace -Weverything with -Wextra -Weverything is not recommended, use -Wextra. Bug: 143713277 Test: mma Change-Id: Ic242983ce984ae87d4b6937af8c106abe8e38364 --- libgrallocusage/Android.bp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libgrallocusage/Android.bp b/libgrallocusage/Android.bp index d27feb99a..ce0c3c8fe 100644 --- a/libgrallocusage/Android.bp +++ b/libgrallocusage/Android.bp @@ -20,12 +20,7 @@ cc_library { "-Werror", ], cppflags: [ - "-Weverything", - "-Wno-c++98-compat-pedantic", - // Hide errors in headers we include - "-Wno-global-constructors", - "-Wno-exit-time-destructors", - "-Wno-padded", + "-Wextra", ], srcs: ["GrallocUsageConversion.cpp"], export_include_dirs: ["include"],