summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/stream_pdu_base.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/stream_pdu_base.cc')
-rw-r--r--gr-blocks/lib/stream_pdu_base.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/stream_pdu_base.cc b/gr-blocks/lib/stream_pdu_base.cc
index 988c70aca9..97e99e8886 100644
--- a/gr-blocks/lib/stream_pdu_base.cc
+++ b/gr-blocks/lib/stream_pdu_base.cc
@@ -44,7 +44,7 @@ void stream_pdu_base::start_rxthread(basic_block* blk, pmt::pmt_t port)
{
d_blk = blk;
d_port = port;
- d_thread = gr::thread::thread(boost::bind(&stream_pdu_base::run, this));
+ d_thread = gr::thread::thread(std::bind(&stream_pdu_base::run, this));
d_started = true;
}