Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 418ff7b3 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by android-build-merger
Browse files

Merge "Disable cert-dcl16-c clang-tidy check for mingw32." am: d3408527

am: baeab573

Change-Id: I8e17caa06e137f3d0179ea0ec0ab4bc84a7edfc5
parents 280d73ae baeab573
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -108,6 +108,12 @@ func (tidy *tidyFeature) flags(ctx ModuleContext, flags Flags) Flags {
	if len(tidy.Properties.Tidy_checks) > 0 {
		tidyChecks = tidyChecks + "," + strings.Join(esc(tidy.Properties.Tidy_checks), ",")
	}
	if ctx.Windows() {
		// https://b.corp.google.com/issues/120614316
		// mingw32 has cert-dcl16-c warning in NO_ERROR,
		// which is used in many Android files.
		tidyChecks = tidyChecks + ",-cert-dcl16-c"
	}
	flags.TidyFlags = append(flags.TidyFlags, tidyChecks)

	return flags