From ea91f802f03488ebabfb33f707e68db062018d48 Mon Sep 17 00:00:00 2001 From: Martin Piatka Date: Mon, 20 Oct 2025 15:40:52 +0200 Subject: [PATCH] vdisp/pipe: frame_recv_delegate: Add virtual dtor Dtor is overriden in subclasses, so it needs to be virtual --- src/video_display/pipe.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video_display/pipe.hpp b/src/video_display/pipe.hpp index 01d2d91e0..f17928078 100644 --- a/src/video_display/pipe.hpp +++ b/src/video_display/pipe.hpp @@ -43,6 +43,7 @@ struct video_frame; class frame_recv_delegate { public: + virtual ~frame_recv_delegate() = default; /** * Implementing method must release both audio and video frame received * as parameters with AUDIO_FRAME_DISPOSE() and VIDEO_FRAME_DISPOSE().