From 9a6b9e274a46b597130502626eb1dce125029a3d Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Wed, 11 Jan 2023 03:23:57 +0900 Subject: [PATCH] meson: gst-plugins-bad: Disable spammy MSVC warning warning C5051: attribute 'noinline' requires at least '/std:c++20'; ignored Part-of: --- subprojects/gst-plugins-bad/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-plugins-bad/meson.build b/subprojects/gst-plugins-bad/meson.build index afe9e1b..4e584e9 100644 --- a/subprojects/gst-plugins-bad/meson.build +++ b/subprojects/gst-plugins-bad/meson.build @@ -64,6 +64,7 @@ if cc.get_id() == 'msvc' '/wd4146', # unary minus on unsigned (beware INT_MIN) '/wd4244', # lossy type conversion (e.g. double -> int) '/wd4305', # truncating type conversion (e.g. double -> float) + '/wd5051', # attribute 'attribute-name' requires at least 'standard-level'; ignored cc.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8 ] -- 2.7.4