aboutsummaryrefslogtreecommitdiffstats
path: root/gr-analog
diff options
context:
space:
mode:
authorJohannes Demel <demel@ant.uni-bremen.de>2020-05-09 15:14:37 +0200
committerJosh Morman <mormjb@gmail.com>2020-06-04 10:05:48 -0400
commit320aa710c42c884ec7395b5c8332f601ee1895fc (patch)
treea6e3568d1418d638fea596c2ad3296fa264c6335 /gr-analog
parentmsg_handler: Use lambdas to set msg handlers (diff)
downloadgnuradio-320aa710c42c884ec7395b5c8332f601ee1895fc.tar.xz
gnuradio-320aa710c42c884ec7395b5c8332f601ee1895fc.zip
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.
Diffstat (limited to 'gr-analog')
-rw-r--r--gr-analog/lib/sig_source_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/lib/sig_source_impl.cc b/gr-analog/lib/sig_source_impl.cc
index c07c2696b..34b5fc888 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>