1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-10-31 15:23:04 +00:00

Fixes for old GCC

This commit is contained in:
Carles Fernandez
2020-04-26 12:38:01 +02:00
parent 0164d8b37c
commit 552b438245
27 changed files with 29 additions and 29 deletions

View File

@@ -148,7 +148,7 @@ FrontEndCal_msg_rx::FrontEndCal_msg_rx() : gr::block("FrontEndCal_msg_rx", gr::i
this->message_port_register_in(pmt::mp("events"));
this->set_msg_handler(pmt::mp("events"),
#if HAS_GENERIC_LAMBDA
[this](auto&& PH1) { msg_handler_events(PH1); });
[this](pmt::pmt_t&& PH1) { msg_handler_events(PH1); });
#else
boost::bind(&FrontEndCal_msg_rx::msg_handler_events, this, _1));
#endif