From 3d3df826c1a2e7e8c936772b53ceb9e9ab5d3901 Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Wed, 8 Apr 2020 10:42:16 -0700 Subject: [PATCH] Disable bugprone-reserved-identifier * Disable it for the next clang compiler update until all source files with this warning are fixed. Bug: 153464409 Test: WITH_TIDY=1 make Change-Id: I126d2f5170f3883192348577e523ef99f5c5a70e --- cc/tidy.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cc/tidy.go b/cc/tidy.go index 545539232..6a13a7877 100644 --- a/cc/tidy.go +++ b/cc/tidy.go @@ -117,6 +117,10 @@ func (tidy *tidyFeature) flags(ctx ModuleContext, flags Flags) Flags { // which is used in many Android files. tidyChecks = tidyChecks + ",-cert-dcl16-c" } + // https://b.corp.google.com/issues/153464409 + // many local projects enable cert-* checks, which + // trigger bugprone-reserved-identifier. + tidyChecks = tidyChecks + ",-bugprone-reserved-identifier*" flags.TidyFlags = append(flags.TidyFlags, tidyChecks) if len(tidy.Properties.Tidy_checks_as_errors) > 0 {