summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/top_block.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/lib/top_block.cc')
-rw-r--r--gnuradio-runtime/lib/top_block.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/top_block.cc b/gnuradio-runtime/lib/top_block.cc
index c7e0ee74ce..319bb7a0c1 100644
--- a/gnuradio-runtime/lib/top_block.cc
+++ b/gnuradio-runtime/lib/top_block.cc
@@ -18,8 +18,8 @@
#include <gnuradio/prefs.h>
#include <gnuradio/top_block.h>
#include <unistd.h>
-#include <boost/make_unique.hpp>
#include <iostream>
+#include <memory>
namespace gr {
top_block_sptr make_top_block(const std::string& name, bool catch_exceptions)
@@ -29,7 +29,7 @@ top_block_sptr make_top_block(const std::string& name, bool catch_exceptions)
top_block::top_block(const std::string& name, bool catch_exceptions)
: hier_block2(name, io_signature::make(0, 0, 0), io_signature::make(0, 0, 0)),
- d_impl(boost::make_unique<top_block_impl>(this, catch_exceptions))
+ d_impl(std::make_unique<top_block_impl>(this, catch_exceptions))
{
}