From 2385a2e68dba71a35b710da87af389ff8b287287 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 14 Aug 2024 13:50:37 +0200 Subject: [PATCH] qt6: Remove unused field ``` In file included from ../subprojects/gst-plugins-good/ext/qt6/gstqsg6material.cc:31: ../subprojects/gst-plugins-good/ext/qt6/gstqsg6material.h:69:17: error: private field 'mem_' is not used [-Werror,-Wunused-private-field] 69 | GstMemory * mem_; | ^ ``` Part-of: --- subprojects/gst-plugins-good/ext/qt6/gstqsg6material.h | 1 - 1 file changed, 1 deletion(-) diff --git a/subprojects/gst-plugins-good/ext/qt6/gstqsg6material.h b/subprojects/gst-plugins-good/ext/qt6/gstqsg6material.h index 3bf9fb8ecf..d331b0aa5c 100644 --- a/subprojects/gst-plugins-good/ext/qt6/gstqsg6material.h +++ b/subprojects/gst-plugins-good/ext/qt6/gstqsg6material.h @@ -66,7 +66,6 @@ private: bool buffer_was_bound; GWeakRef qt_context_ref_; GstBuffer * sync_buffer_; - GstMemory * mem_; GstVideoInfo v_info; GstGLTextureTarget tex_target; GstVideoFrame v_frame;