From f56d917c83074ed93e9b47071b8f3a695796f0d8 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Mon, 21 Sep 2020 22:41:03 +0200 Subject: [PATCH] boost: qualify placeholders with their full namespace From: Martin Hauke Signed-off-by: Sylvain Munaut --- lib/fix_cc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fix_cc.cc b/lib/fix_cc.cc index 630dad7..af79d7d 100644 --- a/lib/fix_cc.cc +++ b/lib/fix_cc.cc @@ -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)); }