aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/device3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/device3.cpp')
-rw-r--r--host/lib/device3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/device3.cpp b/host/lib/device3.cpp
index 3b316e8ea..c3bfb83d2 100644
--- a/host/lib/device3.cpp
+++ b/host/lib/device3.cpp
@@ -17,7 +17,7 @@
#include <boost/format.hpp>
#include <uhd/device3.hpp>
-#include <uhd/utils/msg.hpp>
+#include <uhd/utils/log.hpp>
using namespace uhd;
using namespace uhd::rfnoc;
@@ -68,7 +68,7 @@ std::vector<rfnoc::block_id_t> device3::find_blocks(const std::string &block_id_
void device3::clear()
{
- BOOST_FOREACH(const block_ctrl_base::sptr &block, _rfnoc_block_ctrl) {
+ for(const block_ctrl_base::sptr &block: _rfnoc_block_ctrl) {
block->clear();
}
}