diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-05-04 13:54:45 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-05-04 14:32:27 -0500 |
commit | 1a213267a080ea7f1c364ff3afefdf6e9e4cb509 (patch) | |
tree | 828e3b708dd35a143cc275c5aa401c30c5749efd | |
parent | b31a3c247183d5c80b075737c9609a45a674191a (diff) | |
download | uhd-1a213267a080ea7f1c364ff3afefdf6e9e4cb509.tar.gz uhd-1a213267a080ea7f1c364ff3afefdf6e9e4cb509.tar.bz2 uhd-1a213267a080ea7f1c364ff3afefdf6e9e4cb509.zip |
lib: Fix misssing include in e3xx_radio_control_impl
Adds a missing <thread>, <algorithm>, and <chrono>.
-rw-r--r-- | host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp b/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp index 360ce3a11..68f0bfeaf 100644 --- a/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp +++ b/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp @@ -14,9 +14,12 @@ #include <uhd/utils/math.hpp> #include <boost/algorithm/string.hpp> #include <boost/format.hpp> +#include <algorithm> +#include <chrono> #include <cmath> #include <cstdlib> #include <sstream> +#include <thread> using namespace uhd; using namespace uhd::usrp; |