diff options
Diffstat (limited to 'gnuradio-runtime/lib/scheduler_tpb.cc')
-rw-r--r-- | gnuradio-runtime/lib/scheduler_tpb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/scheduler_tpb.cc b/gnuradio-runtime/lib/scheduler_tpb.cc index 25fc836b96..f04be4227d 100644 --- a/gnuradio-runtime/lib/scheduler_tpb.cc +++ b/gnuradio-runtime/lib/scheduler_tpb.cc @@ -68,7 +68,7 @@ scheduler_tpb::scheduler_tpb(flat_flowgraph_sptr ffg, } thread::barrier_sptr start_sync = - boost::make_shared<thread::barrier>(blocks.size() + 1); + std::make_shared<thread::barrier>(blocks.size() + 1); // Fire off a thead for each block |