From 320aa710c42c884ec7395b5c8332f601ee1895fc Mon Sep 17 00:00:00 2001
From: Johannes Demel <demel@ant.uni-bremen.de>
Date: Sat, 9 May 2020 15:14:37 +0200
Subject: 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.
---
 gr-digital/lib/protocol_formatter_async_impl.cc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'gr-digital/lib/protocol_formatter_async_impl.cc')

diff --git a/gr-digital/lib/protocol_formatter_async_impl.cc b/gr-digital/lib/protocol_formatter_async_impl.cc
index 5235c59746..4a794ce680 100644
--- a/gr-digital/lib/protocol_formatter_async_impl.cc
+++ b/gr-digital/lib/protocol_formatter_async_impl.cc
@@ -42,8 +42,7 @@ protocol_formatter_async_impl::protocol_formatter_async_impl(
     message_port_register_out(d_hdr_port);
     message_port_register_out(d_pld_port);
 
-    set_msg_handler(d_in_port,
-                    boost::bind(&protocol_formatter_async_impl::append, this, _1));
+    set_msg_handler(d_in_port, [this](pmt::pmt_t msg) { this->append(msg); });
 }
 
 protocol_formatter_async_impl::~protocol_formatter_async_impl() {}
-- 
cgit v1.2.3