From 7c5d2a4b29d31a493aca5afee2e6adc63b22443d Mon Sep 17 00:00:00 2001 From: Andrea Bondavalli Date: Sat, 6 Jun 2020 23:36:26 +0200 Subject: [PATCH] Fixed missing include files --- daemon/mdns_client.hpp | 1 + daemon/rtsp_server.hpp | 1 + daemon/tests/daemon_test.cpp | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/daemon/mdns_client.hpp b/daemon/mdns_client.hpp index e346dfc..5c37be3 100644 --- a/daemon/mdns_client.hpp +++ b/daemon/mdns_client.hpp @@ -32,6 +32,7 @@ #include #include #include +#include #include "config.hpp" #include "rtsp_client.hpp" diff --git a/daemon/rtsp_server.hpp b/daemon/rtsp_server.hpp index c0c4239..0d42fd7 100644 --- a/daemon/rtsp_server.hpp +++ b/daemon/rtsp_server.hpp @@ -25,6 +25,7 @@ #include #include #include +#include #include "session_manager.hpp" diff --git a/daemon/tests/daemon_test.cpp b/daemon/tests/daemon_test.cpp index 8065689..c9e97f1 100644 --- a/daemon/tests/daemon_test.cpp +++ b/daemon/tests/daemon_test.cpp @@ -344,7 +344,7 @@ struct Client { return {res->status == 200, res->body}; } - bool wait_for_remote_mdns_sources(int num) { + bool wait_for_remote_mdns_sources(unsigned int num) { boost::property_tree::ptree pt; int retry = 10; do {