PR #23715 opened by Martin Storsjö (mstorsjo) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23715 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23715.patch
Fixes: error: no type named 'system_error' in namespace 'std' Signed-off-by: Kacper Michajłow <[email protected]> (cherry picked from commit c6498178bbfcdb6cc67ce01242f3faeb9d039119) From 690e0621002755ef9d55eaa543128fa009ab8234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= <[email protected]> Date: Mon, 6 Jul 2026 02:53:38 +0200 Subject: [PATCH] avfilter/vsrc_gfxcapture_winrt: add missing system_error include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: error: no type named 'system_error' in namespace 'std' Signed-off-by: Kacper Michajłow <[email protected]> (cherry picked from commit c6498178bbfcdb6cc67ce01242f3faeb9d039119) --- libavfilter/vsrc_gfxcapture_winrt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vsrc_gfxcapture_winrt.cpp b/libavfilter/vsrc_gfxcapture_winrt.cpp index 9cc38342b7..ddc6a7df2d 100644 --- a/libavfilter/vsrc_gfxcapture_winrt.cpp +++ b/libavfilter/vsrc_gfxcapture_winrt.cpp @@ -54,6 +54,7 @@ extern "C" { #include <mutex> #include <regex> #include <string> +#include <system_error> #include <thread> #include <type_traits> -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
