diff options
Diffstat (limited to 'gr-digital/lib/crc32_async_bb_impl.cc')
-rw-r--r-- | gr-digital/lib/crc32_async_bb_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/lib/crc32_async_bb_impl.cc b/gr-digital/lib/crc32_async_bb_impl.cc index 971f69d485..d608d617f3 100644 --- a/gr-digital/lib/crc32_async_bb_impl.cc +++ b/gr-digital/lib/crc32_async_bb_impl.cc @@ -36,9 +36,9 @@ crc32_async_bb_impl::crc32_async_bb_impl(bool check) message_port_register_out(d_out_port); if (check) - set_msg_handler(d_in_port, boost::bind(&crc32_async_bb_impl::check, this, _1)); + set_msg_handler(d_in_port, [this](pmt::pmt_t msg) { this->check(msg); }); else - set_msg_handler(d_in_port, boost::bind(&crc32_async_bb_impl::calc, this, _1)); + set_msg_handler(d_in_port, [this](pmt::pmt_t msg) { this->calc(msg); }); } crc32_async_bb_impl::~crc32_async_bb_impl() {} |