From a6a1954f83478aff0c4fc53d0e8f51b49d51cc1e Mon Sep 17 00:00:00 2001 From: Johannes Demel <demel@ant.uni-bremen.de> Date: Sat, 2 May 2020 15:36:51 +0200 Subject: msg_handler: Switch from boost::function to std::function This commit is a first stab at moving from `boost::function` to `std::function`. For now, it does only update gr-blocks. Also, this requires more testing. If others can confirm that this change works, I'll continue to update all modules. --- gr-blocks/lib/message_strobe_random_impl.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gr-blocks/lib/message_strobe_random_impl.cc') diff --git a/gr-blocks/lib/message_strobe_random_impl.cc b/gr-blocks/lib/message_strobe_random_impl.cc index 793066c419..1241d1c382 100644 --- a/gr-blocks/lib/message_strobe_random_impl.cc +++ b/gr-blocks/lib/message_strobe_random_impl.cc @@ -51,11 +51,12 @@ message_strobe_random_impl::message_strobe_random_impl( // set up ports message_port_register_out(d_port); d_thread = std::shared_ptr<gr::thread::thread>( - new gr::thread::thread(boost::bind(&message_strobe_random_impl::run, this))); + new gr::thread::thread(std::bind(&message_strobe_random_impl::run, this))); message_port_register_in(pmt::mp("set_msg")); - set_msg_handler(pmt::mp("set_msg"), - boost::bind(&message_strobe_random_impl::set_msg, this, _1)); + set_msg_handler( + pmt::mp("set_msg"), + std::bind(&message_strobe_random_impl::set_msg, this, std::placeholders::_1)); } void message_strobe_random_impl::set_mean(float mean_ms) -- cgit v1.2.3