1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-09 19:53:04 +00:00

Give more intuitive naming to asynchronous message handlers

This commit is contained in:
Carles Fernandez
2020-08-03 08:13:21 +02:00
parent 5c62ff27eb
commit 47f6855610
44 changed files with 284 additions and 284 deletions

View File

@@ -225,9 +225,9 @@ void hybrid_observables_gs::msg_handler_pvt_to_observables(const pmt::pmt_t &msg
LOG(INFO) << "Corrected new RX Time offset: " << static_cast<int>(round(new_rx_clock_offset_s * 1000.0)) << "[ms]";
}
}
catch (boost::bad_any_cast &e)
catch (const boost::bad_any_cast &e)
{
LOG(WARNING) << "msg_handler_pvt_to_observables Bad any cast!";
LOG(WARNING) << "msg_handler_pvt_to_observables Bad any_cast: " << e.what();
}
}