From 572f2d10f52269b19b22f59d8809267c4eaca32a Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Sat, 12 Oct 2024 19:05:17 -0300 Subject: [PATCH] meson: amfcodec: fix build with MinGW GCC 14 > ../sys/amfcodec/include/core/PropertyStorage.h:87:50: error: 'virtual void > amf::AMFPropertyStorage::RemoveObserver(amf::AMFPropertyStorageObserver*)' was hidden [-Werror=overloaded-virtual=] Part-of: --- subprojects/gst-plugins-bad/sys/amfcodec/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/gst-plugins-bad/sys/amfcodec/meson.build b/subprojects/gst-plugins-bad/sys/amfcodec/meson.build index 66018fc894..53b74595c7 100644 --- a/subprojects/gst-plugins-bad/sys/amfcodec/meson.build +++ b/subprojects/gst-plugins-bad/sys/amfcodec/meson.build @@ -66,6 +66,8 @@ if cxx.get_id() != 'msvc' '-Wno-format', '-Wno-format-nonliteral', '-Wno-format-security', + # ../sys/amfcodec/include/core/PropertyStorage.h:87:50: error: 'virtual void amf::AMFPropertyStorage::RemoveObserver(amf::AMFPropertyStorageObserver*)' was hidden [-Werror=overloaded-virtual=] + '-Wno-overloaded-virtual', ]) endif