boost: qualify placeholders with their full namespace

From: Martin Hauke <mardnh@gmx.de>
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2020-09-21 22:41:03 +02:00
parent 6c9576670a
commit f56d917c83
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ iqbalance::fix_cc::fix_cc(float mag, float phase)
{
message_port_register_in(pmt::mp("iqbal_corr"));
set_msg_handler(pmt::mp("iqbal_corr"),
boost::bind(&iqbalance::fix_cc::apply_new_corrections, this, _1));
boost::bind(&iqbalance::fix_cc::apply_new_corrections, this, boost::placeholders::_1));
}