From bbf0c17cb834d9d8133a10b0a570668534b498fd Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Fri, 3 Feb 2023 04:23:43 +0100 Subject: [PATCH] Fixed missing include --- source_modules/rtl_tcp_source/src/rtl_tcp_client.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source_modules/rtl_tcp_source/src/rtl_tcp_client.h b/source_modules/rtl_tcp_source/src/rtl_tcp_client.h index a7a5055c..f9ae27fb 100644 --- a/source_modules/rtl_tcp_source/src/rtl_tcp_client.h +++ b/source_modules/rtl_tcp_source/src/rtl_tcp_client.h @@ -2,6 +2,7 @@ #include #include #include +#include namespace rtltcp { #pragma pack(push, 1) @@ -41,4 +42,4 @@ namespace rtltcp { }; std::shared_ptr connect(dsp::stream* stream, std::string host, int port = 1234); -} \ No newline at end of file +}