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

Commit 6ba52d4d authored by Stephen Hines's avatar Stephen Hines Committed by android-build-merger
Browse files

Merge "Silence warnings rather than keeping them in the logs." am: 8646e2ea am: 2180672e

am: b5f52fbe

Change-Id: Idcf4c18f283d98fe91dc58c944a2af999754b657
parents 655f1c7c b5f52fbe
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -151,16 +151,16 @@ func init() {

		// http://b/72331526 Disable -Wtautological-* until the instances detected by these
		// new warnings are fixed.
		"-Wno-error=tautological-constant-compare",
		"-Wno-tautological-constant-compare",

		// http://b/72331524 Allow null pointer arithmetic until the instances detected by
		// this new warning are fixed.
		"-Wno-error=null-pointer-arithmetic",
		"-Wno-null-pointer-arithmetic",

		// http://b/72330874 Disable -Wenum-compare until the instances detected by this new
		// warning are fixed.
		"-Wno-error=enum-compare",
		"-Wno-error=enum-compare-switch",
		"-Wno-enum-compare",
		"-Wno-enum-compare-switch",
	}, " "))
}