From 6871c5dd1655c578d9605015b2f88cba38715767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Wed, 3 Jul 2024 13:32:32 +0100 Subject: meson: temporarily disable -Wunused-function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Deleting the upstream versioned machine types will leave some functions unused until RHEL machine types are added once again. Temporarily disable the -Wunused-function warning to preserve bisectability with fine grained patch splits. Signed-off-by: Daniel P. Berrangé Rebase notes (9.1.0) - New patch --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 41f68d3806..066ca7a2c9 100644 --- a/meson.build +++ b/meson.build @@ -747,6 +747,7 @@ warn_flags = [ '-Wno-string-plus-int', '-Wno-tautological-type-limit-compare', '-Wno-typedef-redefinition', + '-Wno-unused-function', ] if host_os != 'darwin' -- 2.39.3