diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-01-29 12:23:50 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-02-01 13:31:39 -0600 |
commit | 9c4d9d826a6f40f199c526afd5ec168d5d088591 (patch) | |
tree | 7a22809bcb0d7e8831fdadc9c10c4b092ae8dcf0 /host/lib/include | |
parent | 1ed4dd7071ec14016fb8791fb8919148e6c46966 (diff) | |
download | uhd-9c4d9d826a6f40f199c526afd5ec168d5d088591.tar.gz uhd-9c4d9d826a6f40f199c526afd5ec168d5d088591.tar.bz2 uhd-9c4d9d826a6f40f199c526afd5ec168d5d088591.zip |
lib: Fix missing includes in rpc.hpp
Diffstat (limited to 'host/lib/include')
-rw-r--r-- | host/lib/include/uhdlib/utils/rpc.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/utils/rpc.hpp b/host/lib/include/uhdlib/utils/rpc.hpp index e87a2ee32..ca89c1054 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 { |