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

Commit afd8aacf authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Add -Wno-c23-extensions globally.

We're switching to C23 as the default anyway, and even code that can't totally switch should still use as many C23 extensions as it wants to.

Change-Id: I8b8b529e39964f94869cf8be0b274adb8bbb25ad
parent 3ab5fcd2
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -72,6 +72,9 @@ var (

		// Warnings disabled by default.

		// We should encourage use of C23 features even when the whole project
		// isn't C23-ready.
		"-Wno-c23-extensions",
		// Designated initializer syntax is recommended by the Google C++ style
		// and is OK to use even if not formally supported by the chosen C++
		// version.