diff options
Diffstat (limited to 'gnuradio-runtime/lib/basic_block.cc')
-rw-r--r-- | gnuradio-runtime/lib/basic_block.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/basic_block.cc b/gnuradio-runtime/lib/basic_block.cc index 88ad63cf39..f86051213c 100644 --- a/gnuradio-runtime/lib/basic_block.cc +++ b/gnuradio-runtime/lib/basic_block.cc @@ -75,7 +75,7 @@ void basic_block::message_port_register_in(pmt::pmt_t port_id) } msg_queue[port_id] = msg_queue_t(); msg_queue_ready[port_id] = - boost::shared_ptr<boost::condition_variable>(new boost::condition_variable()); + std::shared_ptr<boost::condition_variable>(new boost::condition_variable()); } pmt::pmt_t basic_block::message_ports_in() |