diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-07-09 13:28:38 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-07-14 16:19:08 -0500 |
commit | 14ea574bb7e1a8e6dc1d8d8935cd527b2947009c (patch) | |
tree | cdadfabbbbd0ec37219da6dcce759ed94d4a0f81 /host/lib | |
parent | 04a83b6e76beef970854da69ba882d717669b49c (diff) | |
download | uhd-14ea574bb7e1a8e6dc1d8d8935cd527b2947009c.tar.gz uhd-14ea574bb7e1a8e6dc1d8d8935cd527b2947009c.tar.bz2 uhd-14ea574bb7e1a8e6dc1d8d8935cd527b2947009c.zip |
lib: Add various missing includes
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/common/ad936x_manager.cpp | 2 | ||||
-rw-r--r-- | host/lib/usrp/common/lmx2592.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/host/lib/usrp/common/ad936x_manager.cpp b/host/lib/usrp/common/ad936x_manager.cpp index 31e823d32..fd8c6803b 100644 --- a/host/lib/usrp/common/ad936x_manager.cpp +++ b/host/lib/usrp/common/ad936x_manager.cpp @@ -10,7 +10,9 @@ #include <boost/functional/hash.hpp> #include <chrono> #include <cmath> +#include <list> #include <memory> +#include <string> #include <thread> using namespace uhd; diff --git a/host/lib/usrp/common/lmx2592.cpp b/host/lib/usrp/common/lmx2592.cpp index c80361f4a..0833bc7c4 100644 --- a/host/lib/usrp/common/lmx2592.cpp +++ b/host/lib/usrp/common/lmx2592.cpp @@ -7,6 +7,7 @@ #include "lmx2592_regs.hpp" #include <uhdlib/usrp/common/lmx2592.hpp> #include <uhdlib/utils/narrow.hpp> +#include <array> #include <chrono> #include <iomanip> |