From a3014f1c133fcfe017ae3879c1da8ea85a4d0e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Kosi=C5=84ski?= Date: Mon, 1 Mar 2021 13:25:03 -0800 Subject: [PATCH] Remove Abseil checks from clang-tidy defaults. Abseil is not available in Android, so these checks are not actionable. Test: Compiled frameworks/av, no more spurious warnings. Change-Id: Ic573a3234a99b0fa1f63449e8d020a17a43a134c --- cc/config/tidy.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cc/config/tidy.go b/cc/config/tidy.go index 7c20dd543..c4563e273 100644 --- a/cc/config/tidy.go +++ b/cc/config/tidy.go @@ -31,7 +31,6 @@ func init() { } checks := strings.Join([]string{ "-*", - "abseil-*", "android-*", "bugprone-*", "cert-*",