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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/device3.cpp b/host/lib/device3.cpp
index 3b316e8ea..e1f53656f 100644
--- a/host/lib/device3.cpp
+++ b/host/lib/device3.cpp
@@ -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();
}
}