0004-lib-Fix-missing-includes-in-rpc-hpp.patch 885 B

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