From 6f655967dcf767c4f4dfbc7e8ce11d70512c280b Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Tue, 31 Mar 2026 18:15:08 -0300 Subject: [PATCH] meson: Set -Wno-vla-cxx-extension As briefly discussed with @ok and @cmyk.student on IRC, it seems reasonable, specially considering it is C++. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 0450ba4600..0c819ababe 100644 --- a/meson.build +++ b/meson.build @@ -315,6 +315,7 @@ warning_cflags_c = [ '-Werror=implicit-function-declaration', ] warning_cflags_cpp = [ + '-Wno-vla-cxx-extension', ] compiler_args += cc.get_supported_arguments(warning_cflags_common)