From 320aa710c42c884ec7395b5c8332f601ee1895fc Mon Sep 17 00:00:00 2001 From: Johannes Demel <demel@ant.uni-bremen.de> Date: Sat, 9 May 2020 15:14:37 +0200 Subject: msg_handler: Use lambdas in most components With this commit, all components except gr-qtgui use lambdas instead of `boost::bind` to register msg handlers. --- gr-analog/lib/sig_source_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gr-analog/lib/sig_source_impl.cc') diff --git a/gr-analog/lib/sig_source_impl.cc b/gr-analog/lib/sig_source_impl.cc index c07c2696b1..34b5fc8886 100644 --- a/gr-analog/lib/sig_source_impl.cc +++ b/gr-analog/lib/sig_source_impl.cc @@ -55,7 +55,7 @@ sig_source_impl<T>::sig_source_impl(double sampling_freq, this->set_phase(phase); this->message_port_register_in(pmt::mp("freq")); this->set_msg_handler(pmt::mp("freq"), - boost::bind(&sig_source_impl<T>::set_frequency_msg, this, _1)); + [this](pmt::pmt_t msg) { this->set_frequency_msg(msg); }); } template <class T> -- cgit v1.2.3