mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
meson: gst-plugins-bad: Disable spammy MSVC warning
warning C5051: attribute 'noinline' requires at least '/std:c++20'; ignored Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3705>
This commit is contained in:
parent
d2ef7819d3
commit
9a6b9e274a
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue