diff options
author | Marcus Müller <marcus@hostalia.de> | 2020-06-19 11:07:54 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-06-19 11:07:54 +0200 |
commit | e76d04ca2f4f15e3b1a1ab2a81dd52c4e6d2472c (patch) | |
tree | 1d86f68fceed9cd7204d9a79e816dc06c15feaf4 /gr-blocks/lib/multiply_matrix_impl.cc | |
parent | 98348e37209aa7daeb96fe5ead815e5b083dc6da (diff) | |
parent | 39311758cb1e6a7424d3213b3eb2c65c8c4dcfe1 (diff) |
Move from SWIG to Pybind11
Goodbye, and thanks for all the fish, SWIG.
Please refer to docs/PYBIND11.md for details on how to deal with Pybind.
Diffstat (limited to 'gr-blocks/lib/multiply_matrix_impl.cc')
-rw-r--r-- | gr-blocks/lib/multiply_matrix_impl.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gr-blocks/lib/multiply_matrix_impl.cc b/gr-blocks/lib/multiply_matrix_impl.cc index b3452a5c17..539432eac8 100644 --- a/gr-blocks/lib/multiply_matrix_impl.cc +++ b/gr-blocks/lib/multiply_matrix_impl.cc @@ -223,9 +223,7 @@ multiply_matrix_impl<gr_complex>::multiply_matrix_impl( pmt::pmt_t port_name = pmt::string_to_symbol("set_A"); message_port_register_in(port_name); - set_msg_handler( - port_name, - boost::bind(&multiply_matrix_impl<gr_complex>::msg_handler_A, this, _1)); + set_msg_handler(port_name, [this](pmt::pmt_t msg) { this->msg_handler_A(msg); }); } template <> @@ -244,8 +242,7 @@ multiply_matrix_impl<float>::multiply_matrix_impl( pmt::pmt_t port_name = pmt::string_to_symbol("set_A"); message_port_register_in(port_name); - set_msg_handler(port_name, - boost::bind(&multiply_matrix_impl<float>::msg_handler_A, this, _1)); + set_msg_handler(port_name, [this](pmt::pmt_t msg) { this->msg_handler_A(msg); }); } |