diff options
author | Andrej Rode <andrej.rode@ettus.com> | 2017-04-06 15:31:15 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-04-10 10:37:29 -0700 |
commit | e804bcf5ebe382d25fe0148794b0e3403105a853 (patch) | |
tree | d9ef77112023754cee8dd27f82ecf3cd6d50bc58 /host | |
parent | c1a8f73a008981ea4b0cc841474f20bc704be29d (diff) | |
download | uhd-e804bcf5ebe382d25fe0148794b0e3403105a853.tar.gz uhd-e804bcf5ebe382d25fe0148794b0e3403105a853.tar.bz2 uhd-e804bcf5ebe382d25fe0148794b0e3403105a853.zip |
device3: add missing lock_guard include
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/device3.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/device3.cpp b/host/lib/device3.cpp index b2f27e744..044459aec 100644 --- a/host/lib/device3.cpp +++ b/host/lib/device3.cpp @@ -15,9 +15,10 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#include <boost/format.hpp> #include <uhd/device3.hpp> #include <uhd/utils/log.hpp> +#include <boost/format.hpp> +#include <boost/thread/lock_guard.hpp> using namespace uhd; using namespace uhd::rfnoc; |