aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-07-09 11:02:01 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2021-07-14 16:19:08 -0500
commit04a83b6e76beef970854da69ba882d717669b49c (patch)
tree2c27939ca0b452698e9949beeea9183be27c0b72 /host/lib/rfnoc
parentbaac9a3aaa3e1ce59cb5cd734cd21dc6ed607447 (diff)
downloaduhd-04a83b6e76beef970854da69ba882d717669b49c.tar.gz
uhd-04a83b6e76beef970854da69ba882d717669b49c.tar.bz2
uhd-04a83b6e76beef970854da69ba882d717669b49c.zip
uhd: Replace boost::thread::id with std::thread::id
The Boost version is identical to the std:: version (which is available since C++11) and thus is no longer needed. Because of implicit includes, this breaks compilation in other parts. Appropriate includes were added there also.
Diffstat (limited to 'host/lib/rfnoc')
-rw-r--r--host/lib/rfnoc/chdr_ctrl_endpoint.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/rfnoc/chdr_ctrl_endpoint.cpp b/host/lib/rfnoc/chdr_ctrl_endpoint.cpp
index 592d3dde8..7d9bb8d1b 100644
--- a/host/lib/rfnoc/chdr_ctrl_endpoint.cpp
+++ b/host/lib/rfnoc/chdr_ctrl_endpoint.cpp
@@ -12,6 +12,7 @@
#include <uhdlib/rfnoc/chdr_ctrl_endpoint.hpp>
#include <uhdlib/rfnoc/chdr_packet_writer.hpp>
#include <boost/format.hpp>
+#include <boost/thread.hpp>
#include <atomic>
#include <mutex>
#include <thread>