Skip to content

Commit

Permalink
Merge pull request #20 from yarda/boost-fix
Browse files Browse the repository at this point in the history
Fixed compilation with boost-1.73.0
  • Loading branch information
dl1ksv authored Aug 11, 2020
2 parents 06069c2 + 3f5d545 commit 575fcaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fcd_control_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ namespace gr {
* Initialize message handling
*/
message_port_register_in(pmt::mp("freq"));
set_msg_handler(pmt::mp("freq"), boost::bind(&fcd_control_impl::set_frequency_msg, this, _1));
set_msg_handler(pmt::mp("freq"), boost::bind(&fcd_control_impl::set_frequency_msg, this, boost::placeholders::_1));

}

Expand Down
2 changes: 1 addition & 1 deletion lib/fcdpp_control_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace gr {
* Initialize message handling
*/
message_port_register_in(pmt::mp("freq"));
set_msg_handler(pmt::mp("freq"), boost::bind(&fcdpp_control_impl::set_frequency_msg, this, _1));
set_msg_handler(pmt::mp("freq"), boost::bind(&fcdpp_control_impl::set_frequency_msg, this, boost::placeholders::_1));

}
fcdpp_control_impl::~fcdpp_control_impl()
Expand Down

0 comments on commit 575fcaf

Please sign in to comment.