hc
2024-08-14 d5ef2fdafdb09de9c2f876fc0edf2ba6bf224909
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From 9c4d9d826a6f40f199c526afd5ec168d5d088591 Mon Sep 17 00:00:00 2001
From: Martin Braun <martin.braun@ettus.com>
Date: Fri, 29 Jan 2021 12:23:50 +0100
Subject: [PATCH] lib: Fix missing includes in rpc.hpp
 
[Retrieved from:
https://github.com/EttusResearch/uhd/commit/9c4d9d826a6f40f199c526afd5ec168d5d088591]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 host/lib/include/uhdlib/utils/rpc.hpp | 4 ++++
 1 file changed, 4 insertions(+)
 
diff --git a/host/lib/include/uhdlib/utils/rpc.hpp b/host/lib/include/uhdlib/utils/rpc.hpp
index e87a2ee324..ca89c10547 100644
--- a/host/lib/include/uhdlib/utils/rpc.hpp
+++ b/host/lib/include/uhdlib/utils/rpc.hpp
@@ -12,7 +12,11 @@
 #include <rpc/client.h>
 #include <rpc/rpc_error.h>
 #include <boost/format.hpp>
+#include <chrono>
 #include <memory>
+#include <mutex>
+#include <string>
+#include <thread>
 
 namespace {