From f75f925617f0f7796531b1a12f69e313df28319e Mon Sep 17 00:00:00 2001 From: Kostadin Shishmanov Date: Fri, 24 Nov 2023 20:56:46 +0200 Subject: [PATCH] Add #include to fix building with gcc 14 With gcc 14 some C++ Standard Library headers have been changed to no longer include other headers that were used internally by the library. In libdatachannel's case it is the header. GCC 14 porting guide: https://gcc.gnu.org/gcc-14/porting_to.html#header-dep-changes Signed-off-by: Kostadin Shishmanov --- src/impl/icetransport.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/impl/icetransport.cpp b/src/impl/icetransport.cpp index 3a19e92ac..08fbbaaf2 100644 --- a/src/impl/icetransport.cpp +++ b/src/impl/icetransport.cpp @@ -12,6 +12,7 @@ #include "transport.hpp" #include "utils.hpp" +#include #include #include #include