From e311402d4a0e45e1499014820abe7e2210ab8c3b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 17 May 2025 02:18:32 +0900 Subject: [PATCH] meson: enable -Wgnu-variable-sized-type-not-at-end again Follow-up for ab29e77aa9efc0863216e9415481a786158fd60a. For gcc, flex-array-member-not-at-end was enabled by the commit, but the option for clang with the same effect was still disabled. Let's reenable it. Prompted by #37497. --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index f8e7fcade2b..f31cdca6ab0 100644 --- a/meson.build +++ b/meson.build @@ -489,7 +489,6 @@ endif if cc.get_id() == 'clang' possible_common_cc_flags += [ '-Wno-typedef-redefinition', - '-Wno-gnu-variable-sized-type-not-at-end', ] endif -- 2.47.3